| 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_BASE_H_ | 5 #ifndef ASH_MUS_TEST_WM_TEST_BASE_H_ |
| 6 #define ASH_MUS_TEST_WM_TEST_BASE_H_ | 6 #define ASH_MUS_TEST_WM_TEST_BASE_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 } | 22 } |
| 23 | 23 |
| 24 namespace ui { | 24 namespace ui { |
| 25 class Window; | 25 class Window; |
| 26 } | 26 } |
| 27 | 27 |
| 28 namespace ash { | 28 namespace ash { |
| 29 namespace mus { | 29 namespace mus { |
| 30 | 30 |
| 31 class AshTestImplMus; | 31 class AshTestImplMus; |
| 32 class RootWindowController; | |
| 33 class WmTestHelper; | 32 class WmTestHelper; |
| 34 | 33 |
| 35 // Base class for window manager tests that want to configure | 34 // Base class for window manager tests that want to configure |
| 36 // WindowTreeClient without a client to mus. | 35 // WindowTreeClient without a client to mus. |
| 37 class WmTestBase : public testing::Test { | 36 class WmTestBase : public testing::Test { |
| 38 public: | 37 public: |
| 39 WmTestBase(); | 38 WmTestBase(); |
| 40 ~WmTestBase() override; | 39 ~WmTestBase() override; |
| 41 | 40 |
| 42 // TODO(sky): temporary until http://crbug.com/611563 is fixed. | 41 // TODO(sky): temporary until http://crbug.com/611563 is fixed. |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 bool teardown_called_ = false; | 80 bool teardown_called_ = false; |
| 82 std::unique_ptr<WmTestHelper> test_helper_; | 81 std::unique_ptr<WmTestHelper> test_helper_; |
| 83 | 82 |
| 84 DISALLOW_COPY_AND_ASSIGN(WmTestBase); | 83 DISALLOW_COPY_AND_ASSIGN(WmTestBase); |
| 85 }; | 84 }; |
| 86 | 85 |
| 87 } // namespace mus | 86 } // namespace mus |
| 88 } // namespace ash | 87 } // namespace ash |
| 89 | 88 |
| 90 #endif // ASH_MUS_TEST_WM_TEST_BASE_H_ | 89 #endif // ASH_MUS_TEST_WM_TEST_BASE_H_ |
| OLD | NEW |