| 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" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "ui/aura/test/mus/test_window_tree_client_setup.h" | 12 #include "ui/aura/test/mus/test_window_tree_client_setup.h" |
| 13 | 13 |
| 14 namespace aura { | 14 namespace aura { |
| 15 class WindowTreeClientPrivate; | 15 class WindowTreeClientPrivate; |
| 16 } | 16 } |
| 17 | 17 |
| 18 namespace base { | 18 namespace base { |
| 19 class MessageLoop; | 19 class MessageLoop; |
| 20 class SequencedWorkerPoolOwner; | 20 class SequencedWorkerPoolOwner; |
| 21 } | 21 } |
| 22 | 22 |
| 23 namespace ui { | |
| 24 class WindowTreeClientPrivate; | |
| 25 } | |
| 26 | |
| 27 namespace views { | 23 namespace views { |
| 28 class ViewsDelegate; | 24 class ViewsDelegate; |
| 29 } | 25 } |
| 30 | 26 |
| 31 namespace ash { | 27 namespace ash { |
| 32 | 28 |
| 33 class RootWindowController; | 29 class RootWindowController; |
| 34 | 30 |
| 35 namespace mus { | 31 namespace mus { |
| 36 | 32 |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 | 79 |
| 84 std::unique_ptr<base::SequencedWorkerPoolOwner> blocking_pool_owner_; | 80 std::unique_ptr<base::SequencedWorkerPoolOwner> blocking_pool_owner_; |
| 85 | 81 |
| 86 DISALLOW_COPY_AND_ASSIGN(WmTestHelper); | 82 DISALLOW_COPY_AND_ASSIGN(WmTestHelper); |
| 87 }; | 83 }; |
| 88 | 84 |
| 89 } // namespace mus | 85 } // namespace mus |
| 90 } // namespace ash | 86 } // namespace ash |
| 91 | 87 |
| 92 #endif // ASH_MUS_TEST_WM_TEST_HELPER_H_ | 88 #endif // ASH_MUS_TEST_WM_TEST_HELPER_H_ |
| OLD | NEW |