| 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_ASH_TEST_IMPL_MUS_H_ | 5 #ifndef ASH_MUS_TEST_ASH_TEST_IMPL_MUS_H_ |
| 6 #define ASH_MUS_TEST_ASH_TEST_IMPL_MUS_H_ | 6 #define ASH_MUS_TEST_ASH_TEST_IMPL_MUS_H_ |
| 7 | 7 |
| 8 #include "ash/common/test/ash_test_impl.h" | |
| 9 #include "ash/mus/test/wm_test_base.h" | 8 #include "ash/mus/test/wm_test_base.h" |
| 9 #include "ash/test/ash_test_impl.h" |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 | 11 |
| 12 namespace ash { | 12 namespace ash { |
| 13 namespace mus { | 13 namespace mus { |
| 14 | 14 |
| 15 class WmTestBase; | 15 class WmTestBase; |
| 16 | 16 |
| 17 // Implementation of AshTestImpl for mus. | 17 // Implementation of AshTestImpl for mus. |
| 18 class AshTestImplMus : public AshTestImpl { | 18 class AshTestImplMus : public AshTestImpl { |
| 19 public: | 19 public: |
| (...skipping 25 matching lines...) Expand all Loading... |
| 45 // of WmTestBase. | 45 // of WmTestBase. |
| 46 std::unique_ptr<WmTestBase> wm_test_base_; | 46 std::unique_ptr<WmTestBase> wm_test_base_; |
| 47 | 47 |
| 48 DISALLOW_COPY_AND_ASSIGN(AshTestImplMus); | 48 DISALLOW_COPY_AND_ASSIGN(AshTestImplMus); |
| 49 }; | 49 }; |
| 50 | 50 |
| 51 } // namespace mus | 51 } // namespace mus |
| 52 } // namespace ash | 52 } // namespace ash |
| 53 | 53 |
| 54 #endif // ASH_MUS_TEST_ASH_TEST_IMPL_MUS_H_ | 54 #endif // ASH_MUS_TEST_ASH_TEST_IMPL_MUS_H_ |
| OLD | NEW |