| 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> |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 } | 29 } |
| 30 | 30 |
| 31 namespace blink { | 31 namespace blink { |
| 32 class WebDeviceMotionData; | 32 class WebDeviceMotionData; |
| 33 class WebDeviceOrientationData; | 33 class WebDeviceOrientationData; |
| 34 class WebView; | 34 class WebView; |
| 35 struct WebRect; | 35 struct WebRect; |
| 36 } | 36 } |
| 37 | 37 |
| 38 namespace test_runner { | 38 namespace test_runner { |
| 39 class WebTestProxyBase; | 39 class WebViewTestProxyBase; |
| 40 } | 40 } |
| 41 | 41 |
| 42 namespace content { | 42 namespace content { |
| 43 | 43 |
| 44 class LeakDetector; | 44 class LeakDetector; |
| 45 struct LeakDetectionResult; | 45 struct LeakDetectionResult; |
| 46 | 46 |
| 47 // This is the renderer side of the webkit test runner. | 47 // This is the renderer side of the webkit test runner. |
| 48 // TODO(lukasza): Rename to LayoutTestRenderViewObserver for consistency with | 48 // TODO(lukasza): Rename to LayoutTestRenderViewObserver for consistency with |
| 49 // LayoutTestRenderFrameObserver. | 49 // LayoutTestRenderFrameObserver. |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 bool focus_on_next_commit_; | 213 bool focus_on_next_commit_; |
| 214 | 214 |
| 215 std::unique_ptr<LeakDetector> leak_detector_; | 215 std::unique_ptr<LeakDetector> leak_detector_; |
| 216 | 216 |
| 217 DISALLOW_COPY_AND_ASSIGN(BlinkTestRunner); | 217 DISALLOW_COPY_AND_ASSIGN(BlinkTestRunner); |
| 218 }; | 218 }; |
| 219 | 219 |
| 220 } // namespace content | 220 } // namespace content |
| 221 | 221 |
| 222 #endif // CONTENT_SHELL_RENDERER_LAYOUT_TEST_BLINK_TEST_RUNNER_H_ | 222 #endif // CONTENT_SHELL_RENDERER_LAYOUT_TEST_BLINK_TEST_RUNNER_H_ |
| OLD | NEW |