| 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 CONTENT_SHELL_RENDERER_LAYOUT_TEST_BLINK_TEST_RUNNER_H_ | 5 #ifndef CONTENT_SHELL_RENDERER_LAYOUT_TEST_BLINK_TEST_RUNNER_H_ |
| 6 #define CONTENT_SHELL_RENDERER_LAYOUT_TEST_BLINK_TEST_RUNNER_H_ | 6 #define CONTENT_SHELL_RENDERER_LAYOUT_TEST_BLINK_TEST_RUNNER_H_ |
| 7 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/callback.h" | 12 #include "base/callback.h" |
| 13 #include "base/files/file_path.h" | 13 #include "base/files/file_path.h" |
| 14 #include "base/macros.h" | 14 #include "base/macros.h" |
| 15 #include "components/test_runner/test_preferences.h" | 15 #include "components/test_runner/test_preferences.h" |
| 16 #include "components/test_runner/web_test_delegate.h" | 16 #include "components/test_runner/web_test_delegate.h" |
| 17 #include "content/public/common/page_state.h" | 17 #include "content/public/common/page_state.h" |
| 18 #include "content/public/renderer/render_view_observer.h" | 18 #include "content/public/renderer/render_view_observer.h" |
| 19 #include "content/public/renderer/render_view_observer_tracker.h" | 19 #include "content/public/renderer/render_view_observer_tracker.h" |
| 20 #include "content/shell/common/layout_test/layout_test_bluetooth_fake_adapter_se
tter.mojom.h" | 20 #include "content/shell/common/layout_test/layout_test_bluetooth_fake_adapter_se
tter.mojom.h" |
| 21 #include "content/shell/common/shell_test_configuration.h" | 21 #include "content/shell/common/shell_test_configuration.h" |
| 22 #include "v8/include/v8.h" | 22 #include "v8/include/v8.h" |
| 23 | 23 |
| 24 class SkBitmap; | 24 class SkBitmap; |
| 25 class SkCanvas; | |
| 26 | 25 |
| 27 namespace base { | 26 namespace base { |
| 28 class DictionaryValue; | 27 class DictionaryValue; |
| 29 } | 28 } |
| 30 | 29 |
| 31 namespace blink { | 30 namespace blink { |
| 32 class WebDeviceMotionData; | 31 class WebDeviceMotionData; |
| 33 class WebDeviceOrientationData; | 32 class WebDeviceOrientationData; |
| 34 class WebView; | 33 class WebView; |
| 35 struct WebRect; | |
| 36 } | 34 } |
| 37 | 35 |
| 38 namespace test_runner { | 36 namespace test_runner { |
| 39 class AppBannerService; | 37 class AppBannerService; |
| 40 class WebViewTestProxyBase; | |
| 41 } | 38 } |
| 42 | 39 |
| 43 namespace content { | 40 namespace content { |
| 44 | 41 |
| 45 class LeakDetector; | 42 class LeakDetector; |
| 46 struct LeakDetectionResult; | 43 struct LeakDetectionResult; |
| 47 | 44 |
| 48 // This is the renderer side of the webkit test runner. | 45 // This is the renderer side of the webkit test runner. |
| 49 // TODO(lukasza): Rename to LayoutTestRenderViewObserver for consistency with | 46 // TODO(lukasza): Rename to LayoutTestRenderViewObserver for consistency with |
| 50 // LayoutTestRenderFrameObserver. | 47 // LayoutTestRenderFrameObserver. |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 std::unique_ptr<test_runner::AppBannerService> app_banner_service_; | 221 std::unique_ptr<test_runner::AppBannerService> app_banner_service_; |
| 225 | 222 |
| 226 std::unique_ptr<LeakDetector> leak_detector_; | 223 std::unique_ptr<LeakDetector> leak_detector_; |
| 227 | 224 |
| 228 DISALLOW_COPY_AND_ASSIGN(BlinkTestRunner); | 225 DISALLOW_COPY_AND_ASSIGN(BlinkTestRunner); |
| 229 }; | 226 }; |
| 230 | 227 |
| 231 } // namespace content | 228 } // namespace content |
| 232 | 229 |
| 233 #endif // CONTENT_SHELL_RENDERER_LAYOUT_TEST_BLINK_TEST_RUNNER_H_ | 230 #endif // CONTENT_SHELL_RENDERER_LAYOUT_TEST_BLINK_TEST_RUNNER_H_ |
| OLD | NEW |