| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 ATHENA_WM_TEST_WINDOW_MANAGER_IMPL_TEST_API_H_ | 5 #ifndef ATHENA_WM_TEST_WINDOW_MANAGER_IMPL_TEST_API_H_ |
| 6 #define ATHENA_WM_TEST_WINDOW_MANAGER_IMPL_TEST_API_H_ | 6 #define ATHENA_WM_TEST_WINDOW_MANAGER_IMPL_TEST_API_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 | 9 |
| 10 namespace athena { | 10 namespace athena { |
| 11 class SplitViewController; | 11 class SplitViewController; |
| 12 class WindowListProvider; | 12 class WindowListProvider; |
| 13 class WindowManagerImpl; | 13 class WindowManagerImpl; |
| 14 | 14 |
| 15 namespace test { | 15 namespace test { |
| 16 | 16 |
| 17 class WindowManagerImplTestApi { | 17 class WindowManagerImplTestApi { |
| 18 public: | 18 public: |
| 19 WindowManagerImplTestApi(); | 19 WindowManagerImplTestApi(); |
| 20 ~WindowManagerImplTestApi(); | 20 ~WindowManagerImplTestApi(); |
| 21 | 21 |
| 22 athena::WindowManagerImpl* wm() { return wm_; } |
| 22 athena::WindowListProvider* GetWindowListProvider(); | 23 athena::WindowListProvider* GetWindowListProvider(); |
| 23 athena::SplitViewController* GetSplitViewController(); | 24 athena::SplitViewController* GetSplitViewController(); |
| 24 | 25 |
| 25 private: | 26 private: |
| 26 athena::WindowManagerImpl* wm_; | 27 athena::WindowManagerImpl* wm_; |
| 27 | 28 |
| 28 DISALLOW_COPY_AND_ASSIGN(WindowManagerImplTestApi); | 29 DISALLOW_COPY_AND_ASSIGN(WindowManagerImplTestApi); |
| 29 }; | 30 }; |
| 30 | 31 |
| 31 } // namespace test | 32 } // namespace test |
| 32 } // namespace athena | 33 } // namespace athena |
| 33 | 34 |
| 34 #endif // ATHENA_WM_TEST_WINDOW_MANAGER_IMPL_TEST_API_H_ | 35 #endif // ATHENA_WM_TEST_WINDOW_MANAGER_IMPL_TEST_API_H_ |
| OLD | NEW |