| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_MUS_TEST_WM_TEST_HELPER_H_ | 5 #ifndef ASH_MUS_TEST_WM_TEST_HELPER_H_ |
| 6 #define ASH_MUS_TEST_WM_TEST_HELPER_H_ | 6 #define ASH_MUS_TEST_WM_TEST_HELPER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "ash/mus/window_manager_application.h" | 10 #include "ash/mus/window_manager_application.h" |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 | 22 |
| 23 namespace ui { | 23 namespace ui { |
| 24 class WindowTreeClientPrivate; | 24 class WindowTreeClientPrivate; |
| 25 } | 25 } |
| 26 | 26 |
| 27 namespace views { | 27 namespace views { |
| 28 class ViewsDelegate; | 28 class ViewsDelegate; |
| 29 } | 29 } |
| 30 | 30 |
| 31 namespace ash { | 31 namespace ash { |
| 32 namespace mus { | |
| 33 | 32 |
| 34 class RootWindowController; | 33 class RootWindowController; |
| 35 | 34 |
| 35 namespace mus { |
| 36 |
| 36 // WMTestHelper is responsible for configuring a WindowTreeClient that | 37 // WMTestHelper is responsible for configuring a WindowTreeClient that |
| 37 // does not talk to mus. | 38 // does not talk to mus. |
| 38 class WmTestHelper { | 39 class WmTestHelper { |
| 39 public: | 40 public: |
| 40 WmTestHelper(); | 41 WmTestHelper(); |
| 41 ~WmTestHelper(); | 42 ~WmTestHelper(); |
| 42 | 43 |
| 43 void Init(); | 44 void Init(); |
| 44 | 45 |
| 45 WindowManagerApplication* window_manager_app() { | 46 WindowManagerApplication* window_manager_app() { |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 | 83 |
| 83 std::unique_ptr<base::SequencedWorkerPoolOwner> blocking_pool_owner_; | 84 std::unique_ptr<base::SequencedWorkerPoolOwner> blocking_pool_owner_; |
| 84 | 85 |
| 85 DISALLOW_COPY_AND_ASSIGN(WmTestHelper); | 86 DISALLOW_COPY_AND_ASSIGN(WmTestHelper); |
| 86 }; | 87 }; |
| 87 | 88 |
| 88 } // namespace mus | 89 } // namespace mus |
| 89 } // namespace ash | 90 } // namespace ash |
| 90 | 91 |
| 91 #endif // ASH_MUS_TEST_WM_TEST_HELPER_H_ | 92 #endif // ASH_MUS_TEST_WM_TEST_HELPER_H_ |
| OLD | NEW |