| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_TEST_ASH_TEST_HELPER_H_ | 5 #ifndef ASH_TEST_ASH_TEST_HELPER_H_ |
| 6 #define ASH_TEST_ASH_TEST_HELPER_H_ | 6 #define ASH_TEST_ASH_TEST_HELPER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "ash/common/material_design/material_design_controller.h" | 10 #include "ash/common/material_design/material_design_controller.h" |
| 11 #include "ash/test/material_design_controller_test_api.h" | 11 #include "ash/common/test/material_design_controller_test_api.h" |
| 12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 | 14 |
| 15 namespace aura { | 15 namespace aura { |
| 16 class Window; | 16 class Window; |
| 17 } // namespace aura | 17 } // namespace aura |
| 18 | 18 |
| 19 namespace base { | 19 namespace base { |
| 20 class MessageLoopForUI; | 20 class MessageLoopForUI; |
| 21 } // namespace base | 21 } // namespace base |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 | 113 |
| 114 std::unique_ptr<test::MaterialDesignControllerTestAPI> material_design_state_; | 114 std::unique_ptr<test::MaterialDesignControllerTestAPI> material_design_state_; |
| 115 | 115 |
| 116 DISALLOW_COPY_AND_ASSIGN(AshTestHelper); | 116 DISALLOW_COPY_AND_ASSIGN(AshTestHelper); |
| 117 }; | 117 }; |
| 118 | 118 |
| 119 } // namespace test | 119 } // namespace test |
| 120 } // namespace ash | 120 } // namespace ash |
| 121 | 121 |
| 122 #endif // ASH_TEST_ASH_TEST_HELPER_H_ | 122 #endif // ASH_TEST_ASH_TEST_HELPER_H_ |
| OLD | NEW |