| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef ASH_TEST_SHELL_TEST_API_H_ | 5 #ifndef ASH_TEST_SHELL_TEST_API_H_ |
| 6 #define ASH_TEST_SHELL_TEST_API_H_ | 6 #define ASH_TEST_SHELL_TEST_API_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 | 9 |
| 10 namespace views { | 10 namespace views { |
| 11 namespace corewm { | 11 namespace corewm { |
| 12 class InputMethodEventFilter; | 12 class InputMethodEventFilter; |
| 13 } // namespace corewm | 13 } // namespace corewm |
| 14 } // namespace views | 14 } // namespace views |
| 15 | 15 |
| 16 namespace ash { | 16 namespace ash { |
| 17 class AshNativeCursorManager; | 17 class AshNativeCursorManager; |
| 18 class Shell; | 18 class Shell; |
| 19 class LauncherModel; | 19 class LauncherModel; |
| 20 | 20 |
| 21 namespace internal { | 21 namespace internal { |
| 22 class AppListController; |
| 22 class DragDropController; | 23 class DragDropController; |
| 23 class RootWindowLayoutManager; | 24 class RootWindowLayoutManager; |
| 24 class ScreenPositionController; | 25 class ScreenPositionController; |
| 25 class SystemGestureEventFilter; | 26 class SystemGestureEventFilter; |
| 26 class WorkspaceController; | 27 class WorkspaceController; |
| 27 } // namespace internal | 28 } // namespace internal |
| 28 | 29 |
| 29 namespace test { | 30 namespace test { |
| 30 | 31 |
| 31 // Accesses private data from a Shell for testing. | 32 // Accesses private data from a Shell for testing. |
| 32 class ShellTestApi { | 33 class ShellTestApi { |
| 33 public: | 34 public: |
| 34 explicit ShellTestApi(Shell* shell); | 35 explicit ShellTestApi(Shell* shell); |
| 35 | 36 |
| 36 internal::RootWindowLayoutManager* root_window_layout(); | 37 internal::RootWindowLayoutManager* root_window_layout(); |
| 37 views::corewm::InputMethodEventFilter* input_method_event_filter(); | 38 views::corewm::InputMethodEventFilter* input_method_event_filter(); |
| 38 internal::SystemGestureEventFilter* system_gesture_event_filter(); | 39 internal::SystemGestureEventFilter* system_gesture_event_filter(); |
| 39 internal::WorkspaceController* workspace_controller(); | 40 internal::WorkspaceController* workspace_controller(); |
| 40 internal::ScreenPositionController* screen_position_controller(); | 41 internal::ScreenPositionController* screen_position_controller(); |
| 41 AshNativeCursorManager* ash_native_cursor_manager(); | 42 AshNativeCursorManager* ash_native_cursor_manager(); |
| 42 LauncherModel* launcher_model(); | 43 LauncherModel* launcher_model(); |
| 43 internal::DragDropController* drag_drop_controller(); | 44 internal::DragDropController* drag_drop_controller(); |
| 45 internal::AppListController* app_list_controller(); |
| 44 | 46 |
| 45 void DisableOutputConfiguratorAnimation(); | 47 void DisableOutputConfiguratorAnimation(); |
| 46 | 48 |
| 47 private: | 49 private: |
| 48 Shell* shell_; // not owned | 50 Shell* shell_; // not owned |
| 49 | 51 |
| 50 DISALLOW_COPY_AND_ASSIGN(ShellTestApi); | 52 DISALLOW_COPY_AND_ASSIGN(ShellTestApi); |
| 51 }; | 53 }; |
| 52 | 54 |
| 53 } // namespace test | 55 } // namespace test |
| 54 } // namespace ash | 56 } // namespace ash |
| 55 | 57 |
| 56 #endif // ASH_TEST_SHELL_TEST_API_H_ | 58 #endif // ASH_TEST_SHELL_TEST_API_H_ |
| OLD | NEW |