Chromium Code Reviews| 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/macros.h" | 8 #include "base/macros.h" |
| 9 | 9 |
| 10 namespace ash { | 10 namespace ash { |
| (...skipping 12 matching lines...) Expand all Loading... | |
| 23 class ShellTestApi { | 23 class ShellTestApi { |
| 24 public: | 24 public: |
| 25 explicit ShellTestApi(Shell* shell); | 25 explicit ShellTestApi(Shell* shell); |
| 26 | 26 |
| 27 SystemGestureEventFilter* system_gesture_event_filter(); | 27 SystemGestureEventFilter* system_gesture_event_filter(); |
| 28 WorkspaceController* workspace_controller(); | 28 WorkspaceController* workspace_controller(); |
| 29 ScreenPositionController* screen_position_controller(); | 29 ScreenPositionController* screen_position_controller(); |
| 30 AshNativeCursorManager* ash_native_cursor_manager(); | 30 AshNativeCursorManager* ash_native_cursor_manager(); |
| 31 DragDropController* drag_drop_controller(); | 31 DragDropController* drag_drop_controller(); |
| 32 MaximizeModeWindowManager* maximize_mode_window_manager(); | 32 MaximizeModeWindowManager* maximize_mode_window_manager(); |
| 33 void DisableDisplayAnimator(); | |
|
bruthig
2017/03/08 22:35:59
Thx for moving this into DisplayConfigurationContr
wutao
2017/03/09 22:09:20
Acknowledged.
| |
| 34 | 33 |
| 35 // Set SessionStateDelegate. | 34 // Set SessionStateDelegate. |
| 36 void SetSessionStateDelegate(SessionStateDelegate* session_state_delegate); | 35 void SetSessionStateDelegate(SessionStateDelegate* session_state_delegate); |
| 37 | 36 |
| 38 private: | 37 private: |
| 39 Shell* shell_; // not owned | 38 Shell* shell_; // not owned |
| 40 | 39 |
| 41 DISALLOW_COPY_AND_ASSIGN(ShellTestApi); | 40 DISALLOW_COPY_AND_ASSIGN(ShellTestApi); |
| 42 }; | 41 }; |
| 43 | 42 |
| 44 } // namespace test | 43 } // namespace test |
| 45 } // namespace ash | 44 } // namespace ash |
| 46 | 45 |
| 47 #endif // ASH_TEST_SHELL_TEST_API_H_ | 46 #endif // ASH_TEST_SHELL_TEST_API_H_ |
| OLD | NEW |