forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshell_test_api.h
62 lines (48 loc) · 1.62 KB
/
shell_test_api.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// 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_TEST_SHELL_TEST_API_H_
#define ASH_TEST_SHELL_TEST_API_H_
#include "base/basictypes.h"
namespace views {
namespace corewm {
class InputMethodEventFilter;
} // namespace corewm
} // namespace views
namespace ash {
class AshNativeCursorManager;
class LauncherDelegate;
class ShelfModel;
class Shell;
namespace internal {
class AppListController;
class DragDropController;
class RootWindowLayoutManager;
class ScreenPositionController;
class SystemGestureEventFilter;
class WorkspaceController;
} // namespace internal
namespace test {
// Accesses private data from a Shell for testing.
class ShellTestApi {
public:
explicit ShellTestApi(Shell* shell);
internal::RootWindowLayoutManager* root_window_layout();
views::corewm::InputMethodEventFilter* input_method_event_filter();
internal::SystemGestureEventFilter* system_gesture_event_filter();
internal::WorkspaceController* workspace_controller();
internal::ScreenPositionController* screen_position_controller();
AshNativeCursorManager* ash_native_cursor_manager();
ShelfModel* shelf_model();
internal::DragDropController* drag_drop_controller();
internal::AppListController* app_list_controller();
void DisableOutputConfiguratorAnimation();
// Set LauncherDelegate.
void SetLauncherDelegate(LauncherDelegate* delegate);
private:
Shell* shell_; // not owned
DISALLOW_COPY_AND_ASSIGN(ShellTestApi);
};
} // namespace test
} // namespace ash
#endif // ASH_TEST_SHELL_TEST_API_H_