| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_BASE_H_ | 5 #ifndef ASH_TEST_ASH_TEST_BASE_H_ |
| 6 #define ASH_TEST_ASH_TEST_BASE_H_ | 6 #define ASH_TEST_ASH_TEST_BASE_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 #include <string> | 11 #include <string> |
| 12 | 12 |
| 13 #include "ash/common/material_design/material_design_controller.h" | 13 #include "ash/common/material_design/material_design_controller.h" |
| 14 #include "base/compiler_specific.h" | 14 #include "base/compiler_specific.h" |
| 15 #include "base/macros.h" | 15 #include "base/macros.h" |
| 16 #include "base/message_loop/message_loop.h" | 16 #include "base/message_loop/message_loop.h" |
| 17 #include "base/threading/thread.h" | 17 #include "base/threading/thread.h" |
| 18 #include "testing/gtest/include/gtest/gtest.h" | 18 #include "testing/gtest/include/gtest/gtest.h" |
| 19 #include "third_party/skia/include/core/SkColor.h" | 19 #include "third_party/skia/include/core/SkColor.h" |
| 20 #include "ui/display/display.h" | 20 #include "ui/display/display.h" |
| 21 #include "ui/wm/public/window_types.h" | 21 #include "ui/wm/public/window_types.h" |
| 22 | 22 |
| 23 #if defined(OS_WIN) | 23 #if defined(OS_WIN) |
| 24 #include "ui/base/win/scoped_ole_initializer.h" | 24 #include "ui/base/win/scoped_ole_initializer.h" |
| 25 #endif | 25 #endif |
| 26 | 26 |
| 27 namespace aura { | 27 namespace aura { |
| 28 class RootWindow; | |
| 29 class Window; | 28 class Window; |
| 30 class WindowDelegate; | 29 class WindowDelegate; |
| 31 } // namespace aura | 30 } // namespace aura |
| 32 | 31 |
| 33 namespace display { | 32 namespace display { |
| 34 class DisplayManager; | 33 class DisplayManager; |
| 35 | 34 |
| 36 namespace test { | 35 namespace test { |
| 37 class DisplayManagerTestApi; | 36 class DisplayManagerTestApi; |
| 38 } // namespace test | 37 } // namespace test |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 ~NoSessionAshTestBase() override {} | 208 ~NoSessionAshTestBase() override {} |
| 210 | 209 |
| 211 private: | 210 private: |
| 212 DISALLOW_COPY_AND_ASSIGN(NoSessionAshTestBase); | 211 DISALLOW_COPY_AND_ASSIGN(NoSessionAshTestBase); |
| 213 }; | 212 }; |
| 214 | 213 |
| 215 } // namespace test | 214 } // namespace test |
| 216 } // namespace ash | 215 } // namespace ash |
| 217 | 216 |
| 218 #endif // ASH_TEST_ASH_TEST_BASE_H_ | 217 #endif // ASH_TEST_ASH_TEST_BASE_H_ |
| OLD | NEW |