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 CONTENT_SHELL_BROWSER_LAYOUT_TEST_BLINK_TEST_CONTROLLER_H_ | 5 #ifndef CONTENT_SHELL_BROWSER_LAYOUT_TEST_BLINK_TEST_CONTROLLER_H_ |
6 #define CONTENT_SHELL_BROWSER_LAYOUT_TEST_BLINK_TEST_CONTROLLER_H_ | 6 #define CONTENT_SHELL_BROWSER_LAYOUT_TEST_BLINK_TEST_CONTROLLER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <memory> | 9 #include <memory> |
10 #include <ostream> | 10 #include <ostream> |
(...skipping 17 matching lines...) Expand all Loading... |
28 #include "content/public/common/web_preferences.h" | 28 #include "content/public/common/web_preferences.h" |
29 #include "content/shell/common/leak_detection_result.h" | 29 #include "content/shell/common/leak_detection_result.h" |
30 #include "ui/gfx/geometry/size.h" | 30 #include "ui/gfx/geometry/size.h" |
31 | 31 |
32 #if defined(OS_ANDROID) | 32 #if defined(OS_ANDROID) |
33 #include "base/threading/thread_restrictions.h" | 33 #include "base/threading/thread_restrictions.h" |
34 #endif | 34 #endif |
35 | 35 |
36 class SkBitmap; | 36 class SkBitmap; |
37 | 37 |
38 namespace url { | |
39 class Origin; | |
40 } | |
41 | |
42 namespace content { | 38 namespace content { |
43 | 39 |
44 class LayoutTestBluetoothChooserFactory; | 40 class LayoutTestBluetoothChooserFactory; |
45 class LayoutTestDevToolsFrontend; | 41 class LayoutTestDevToolsFrontend; |
46 class RenderFrameHost; | 42 class RenderFrameHost; |
47 class RenderProcessHost; | 43 class RenderProcessHost; |
48 class Shell; | 44 class Shell; |
49 | 45 |
50 #if defined(OS_ANDROID) | 46 #if defined(OS_ANDROID) |
51 // Android uses a nested message loop for running layout tests because the | 47 // Android uses a nested message loop for running layout tests because the |
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
287 // waiting on the UI thread while layout tests are being ran. | 283 // waiting on the UI thread while layout tests are being ran. |
288 ScopedAllowWaitForAndroidLayoutTests reduced_restrictions_; | 284 ScopedAllowWaitForAndroidLayoutTests reduced_restrictions_; |
289 #endif | 285 #endif |
290 | 286 |
291 DISALLOW_COPY_AND_ASSIGN(BlinkTestController); | 287 DISALLOW_COPY_AND_ASSIGN(BlinkTestController); |
292 }; | 288 }; |
293 | 289 |
294 } // namespace content | 290 } // namespace content |
295 | 291 |
296 #endif // CONTENT_SHELL_BROWSER_LAYOUT_TEST_BLINK_TEST_CONTROLLER_H_ | 292 #endif // CONTENT_SHELL_BROWSER_LAYOUT_TEST_BLINK_TEST_CONTROLLER_H_ |
OLD | NEW |