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 <string> | 8 #include <string> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
11 #include "base/message_loop/message_loop.h" | 11 #include "base/message_loop/message_loop.h" |
12 #include "base/threading/thread.h" | 12 #include "base/threading/thread.h" |
13 #include "content/public/test/test_browser_thread_bundle.h" | 13 #include "content/public/test/test_browser_thread_bundle.h" |
14 #include "testing/gtest/include/gtest/gtest.h" | 14 #include "testing/gtest/include/gtest/gtest.h" |
15 #include "third_party/skia/include/core/SkColor.h" | 15 #include "third_party/skia/include/core/SkColor.h" |
16 #include "ui/gfx/display.h" | |
17 #include "ui/wm/public/window_types.h" | 16 #include "ui/wm/public/window_types.h" |
18 | 17 |
19 #if defined(OS_WIN) | 18 #if defined(OS_WIN) |
20 #include "ui/base/win/scoped_ole_initializer.h" | 19 #include "ui/base/win/scoped_ole_initializer.h" |
21 #endif | 20 #endif |
22 | 21 |
23 namespace gfx { | 22 namespace gfx { |
24 class Rect; | 23 class Rect; |
25 } | 24 } |
26 | 25 |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 | 92 |
94 protected: | 93 protected: |
95 enum UserSessionBlockReason { | 94 enum UserSessionBlockReason { |
96 FIRST_BLOCK_REASON, | 95 FIRST_BLOCK_REASON, |
97 BLOCKED_BY_LOCK_SCREEN = FIRST_BLOCK_REASON, | 96 BLOCKED_BY_LOCK_SCREEN = FIRST_BLOCK_REASON, |
98 BLOCKED_BY_LOGIN_SCREEN, | 97 BLOCKED_BY_LOGIN_SCREEN, |
99 BLOCKED_BY_USER_ADDING_SCREEN, | 98 BLOCKED_BY_USER_ADDING_SCREEN, |
100 NUMBER_OF_BLOCK_REASONS | 99 NUMBER_OF_BLOCK_REASONS |
101 }; | 100 }; |
102 | 101 |
103 // Returns the rotation currentl active for the display |id|. | |
104 static gfx::Display::Rotation GetActiveDisplayRotation(int64 id); | |
105 | |
106 // Returns the rotation currently active for the internal display. | |
107 static gfx::Display::Rotation GetCurrentInternalDisplayRotation(); | |
108 | |
109 // Proxy to AshTestHelper::SupportsMultipleDisplays(). | 102 // Proxy to AshTestHelper::SupportsMultipleDisplays(). |
110 static bool SupportsMultipleDisplays(); | 103 static bool SupportsMultipleDisplays(); |
111 | 104 |
112 // Proxy to AshTestHelper::SupportsHostWindowResize(). | 105 // Proxy to AshTestHelper::SupportsHostWindowResize(). |
113 static bool SupportsHostWindowResize(); | 106 static bool SupportsHostWindowResize(); |
114 | 107 |
115 void set_start_session(bool start_session) { start_session_ = start_session; } | 108 void set_start_session(bool start_session) { start_session_ = start_session; } |
116 | 109 |
117 AshTestHelper* ash_test_helper() { return ash_test_helper_.get(); } | 110 AshTestHelper* ash_test_helper() { return ash_test_helper_.get(); } |
118 | 111 |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 ~NoSessionAshTestBase() override {} | 155 ~NoSessionAshTestBase() override {} |
163 | 156 |
164 private: | 157 private: |
165 DISALLOW_COPY_AND_ASSIGN(NoSessionAshTestBase); | 158 DISALLOW_COPY_AND_ASSIGN(NoSessionAshTestBase); |
166 }; | 159 }; |
167 | 160 |
168 } // namespace test | 161 } // namespace test |
169 } // namespace ash | 162 } // namespace ash |
170 | 163 |
171 #endif // ASH_TEST_ASH_TEST_BASE_H_ | 164 #endif // ASH_TEST_ASH_TEST_BASE_H_ |
OLD | NEW |