| 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_WORKSPACE_CONTROLLER_TEST_API_H_ | 5 #ifndef ASH_TEST_WORKSPACE_CONTROLLER_TEST_API_H_ |
| 6 #define ASH_TEST_WORKSPACE_CONTROLLER_TEST_API_H_ | 6 #define ASH_TEST_WORKSPACE_CONTROLLER_TEST_API_H_ |
| 7 | 7 |
| 8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
| 9 #include "ash/wm/workspace_controller.h" | 9 #include "ash/wm/workspace_controller.h" |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 | 11 |
| 12 namespace ash { | 12 namespace ash { |
| 13 class MultiWindowResizeController; | 13 class MultiWindowResizeController; |
| 14 class WorkspaceEventHandler; | 14 class WorkspaceEventHandler; |
| 15 | 15 |
| 16 namespace test { | 16 namespace test { |
| 17 | 17 |
| 18 class ASH_EXPORT WorkspaceControllerTestApi { | 18 class ASH_EXPORT WorkspaceControllerTestApi { |
| 19 public: | 19 public: |
| 20 explicit WorkspaceControllerTestApi(WorkspaceController* controller); | 20 explicit WorkspaceControllerTestApi(WorkspaceController* controller); |
| 21 ~WorkspaceControllerTestApi(); | 21 ~WorkspaceControllerTestApi(); |
| 22 | 22 |
| 23 WorkspaceEventHandler* GetEventHandler(); | 23 WorkspaceEventHandler* GetEventHandler(); |
| 24 MultiWindowResizeController* GetMultiWindowResizeController(); | 24 MultiWindowResizeController* GetMultiWindowResizeController(); |
| 25 aura::Window* GetBackdropWindow(); |
| 25 | 26 |
| 26 private: | 27 private: |
| 27 WorkspaceController* controller_; | 28 WorkspaceController* controller_; |
| 28 | 29 |
| 29 DISALLOW_COPY_AND_ASSIGN(WorkspaceControllerTestApi); | 30 DISALLOW_COPY_AND_ASSIGN(WorkspaceControllerTestApi); |
| 30 }; | 31 }; |
| 31 | 32 |
| 32 } // namespace test | 33 } // namespace test |
| 33 } // namespace ash | 34 } // namespace ash |
| 34 | 35 |
| 35 #endif // ASH_TEST_WORKSPACE_CONTROLLER_TEST_API_H_ | 36 #endif // ASH_TEST_WORKSPACE_CONTROLLER_TEST_API_H_ |
| OLD | NEW |