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