| 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 app_list { | 10 namespace app_list { |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 SystemGestureEventFilter* system_gesture_event_filter(); | 33 SystemGestureEventFilter* system_gesture_event_filter(); |
| 34 WorkspaceController* workspace_controller(); | 34 WorkspaceController* workspace_controller(); |
| 35 ScreenPositionController* screen_position_controller(); | 35 ScreenPositionController* screen_position_controller(); |
| 36 AshNativeCursorManager* ash_native_cursor_manager(); | 36 AshNativeCursorManager* ash_native_cursor_manager(); |
| 37 ShelfModel* shelf_model(); | 37 ShelfModel* shelf_model(); |
| 38 DragDropController* drag_drop_controller(); | 38 DragDropController* drag_drop_controller(); |
| 39 app_list::AppListPresenter* app_list_presenter(); | 39 app_list::AppListPresenter* app_list_presenter(); |
| 40 MaximizeModeWindowManager* maximize_mode_window_manager(); | 40 MaximizeModeWindowManager* maximize_mode_window_manager(); |
| 41 void DisableDisplayAnimator(); | 41 void DisableDisplayAnimator(); |
| 42 | 42 |
| 43 // Set ShelfDelegate. | |
| 44 void SetShelfDelegate(ShelfDelegate* delegate); | |
| 45 | |
| 46 // Set SessionStateDelegate. | 43 // Set SessionStateDelegate. |
| 47 void SetSessionStateDelegate(SessionStateDelegate* session_state_delegate); | 44 void SetSessionStateDelegate(SessionStateDelegate* session_state_delegate); |
| 48 | 45 |
| 49 private: | 46 private: |
| 50 Shell* shell_; // not owned | 47 Shell* shell_; // not owned |
| 51 | 48 |
| 52 DISALLOW_COPY_AND_ASSIGN(ShellTestApi); | 49 DISALLOW_COPY_AND_ASSIGN(ShellTestApi); |
| 53 }; | 50 }; |
| 54 | 51 |
| 55 } // namespace test | 52 } // namespace test |
| 56 } // namespace ash | 53 } // namespace ash |
| 57 | 54 |
| 58 #endif // ASH_TEST_SHELL_TEST_API_H_ | 55 #endif // ASH_TEST_SHELL_TEST_API_H_ |
| OLD | NEW |