blob: 9c4c8e66f3ac44ed880d55d8d2910c9b21f94c34 [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_SHELL_TEST_API_H_
#define ASH_SHELL_TEST_API_H_
#include <memory>
#include "base/macros.h"
namespace ash {
class NativeCursorManagerAsh;
class DragDropController;
class TabletModeWindowManager;
class PaletteDelegate;
class ScreenPositionController;
class Shell;
class SystemGestureEventFilter;
class WorkspaceController;
// Accesses private data from a Shell for testing.
class ShellTestApi {
public:
ShellTestApi();
explicit ShellTestApi(Shell* shell);
SystemGestureEventFilter* system_gesture_event_filter();
WorkspaceController* workspace_controller();
ScreenPositionController* screen_position_controller();
NativeCursorManagerAsh* native_cursor_manager_ash();
DragDropController* drag_drop_controller();
TabletModeWindowManager* tablet_mode_window_manager();
void SetPaletteDelegate(std::unique_ptr<PaletteDelegate> palette_delegate);
private:
Shell* shell_; // not owned
DISALLOW_COPY_AND_ASSIGN(ShellTestApi);
};
} // namespace ash
#endif // ASH_SHELL_TEST_API_H_