| 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 <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 public: | 27 public: |
| 28 ShellTestApi(); | 28 ShellTestApi(); |
| 29 explicit ShellTestApi(Shell* shell); | 29 explicit ShellTestApi(Shell* shell); |
| 30 | 30 |
| 31 SystemGestureEventFilter* system_gesture_event_filter(); | 31 SystemGestureEventFilter* system_gesture_event_filter(); |
| 32 WorkspaceController* workspace_controller(); | 32 WorkspaceController* workspace_controller(); |
| 33 ScreenPositionController* screen_position_controller(); | 33 ScreenPositionController* screen_position_controller(); |
| 34 AshNativeCursorManager* ash_native_cursor_manager(); | 34 AshNativeCursorManager* ash_native_cursor_manager(); |
| 35 DragDropController* drag_drop_controller(); | 35 DragDropController* drag_drop_controller(); |
| 36 MaximizeModeWindowManager* maximize_mode_window_manager(); | 36 MaximizeModeWindowManager* maximize_mode_window_manager(); |
| 37 void DisableDisplayAnimator(); | |
| 38 | 37 |
| 39 void SetPaletteDelegate(std::unique_ptr<PaletteDelegate> palette_delegate); | 38 void SetPaletteDelegate(std::unique_ptr<PaletteDelegate> palette_delegate); |
| 40 void SetSessionStateDelegate(SessionStateDelegate* session_state_delegate); | 39 void SetSessionStateDelegate(SessionStateDelegate* session_state_delegate); |
| 41 | 40 |
| 42 private: | 41 private: |
| 43 Shell* shell_; // not owned | 42 Shell* shell_; // not owned |
| 44 | 43 |
| 45 DISALLOW_COPY_AND_ASSIGN(ShellTestApi); | 44 DISALLOW_COPY_AND_ASSIGN(ShellTestApi); |
| 46 }; | 45 }; |
| 47 | 46 |
| 48 } // namespace test | 47 } // namespace test |
| 49 } // namespace ash | 48 } // namespace ash |
| 50 | 49 |
| 51 #endif // ASH_TEST_SHELL_TEST_API_H_ | 50 #endif // ASH_TEST_SHELL_TEST_API_H_ |
| OLD | NEW |