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 <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/callback.h" | 11 #include "base/callback.h" |
12 #include "base/files/file_path.h" | 12 #include "base/files/file_path.h" |
13 #include "base/macros.h" | 13 #include "base/macros.h" |
14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.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/shell_test_configuration.h" | 20 #include "content/shell/common/shell_test_configuration.h" |
21 #include "third_party/WebKit/public/platform/modules/screen_orientation/WebScree
nOrientationType.h" | 21 #include "third_party/WebKit/public/platform/modules/screen_orientation/WebScree
nOrientationType.h" |
22 #include "v8/include/v8.h" | 22 #include "v8/include/v8.h" |
23 | 23 |
24 class SkBitmap; | 24 class SkBitmap; |
25 class SkCanvas; | 25 class SkCanvas; |
26 | 26 |
27 namespace blink { | 27 namespace blink { |
28 class WebBatteryStatus; | |
29 class WebDeviceMotionData; | 28 class WebDeviceMotionData; |
30 class WebDeviceOrientationData; | 29 class WebDeviceOrientationData; |
31 struct WebRect; | 30 struct WebRect; |
32 } | 31 } |
33 | 32 |
34 namespace test_runner { | 33 namespace test_runner { |
35 class WebTestProxyBase; | 34 class WebTestProxyBase; |
36 } | 35 } |
37 | 36 |
38 namespace content { | 37 namespace content { |
(...skipping 25 matching lines...) Expand all Loading... |
64 void SetEditCommand(const std::string& name, | 63 void SetEditCommand(const std::string& name, |
65 const std::string& value) override; | 64 const std::string& value) override; |
66 void SetGamepadProvider(test_runner::GamepadController* controller) override; | 65 void SetGamepadProvider(test_runner::GamepadController* controller) override; |
67 void SetDeviceLightData(const double data) override; | 66 void SetDeviceLightData(const double data) override; |
68 void SetDeviceMotionData(const blink::WebDeviceMotionData& data) override; | 67 void SetDeviceMotionData(const blink::WebDeviceMotionData& data) override; |
69 void SetDeviceOrientationData( | 68 void SetDeviceOrientationData( |
70 const blink::WebDeviceOrientationData& data) override; | 69 const blink::WebDeviceOrientationData& data) override; |
71 void SetScreenOrientation( | 70 void SetScreenOrientation( |
72 const blink::WebScreenOrientationType& orientation) override; | 71 const blink::WebScreenOrientationType& orientation) override; |
73 void ResetScreenOrientation() override; | 72 void ResetScreenOrientation() override; |
74 void DidChangeBatteryStatus(const blink::WebBatteryStatus& status) override; | |
75 void PrintMessage(const std::string& message) override; | 73 void PrintMessage(const std::string& message) override; |
76 void PostTask(test_runner::WebTask* task) override; | 74 void PostTask(test_runner::WebTask* task) override; |
77 void PostDelayedTask(test_runner::WebTask* task, long long ms) override; | 75 void PostDelayedTask(test_runner::WebTask* task, long long ms) override; |
78 blink::WebString RegisterIsolatedFileSystem( | 76 blink::WebString RegisterIsolatedFileSystem( |
79 const blink::WebVector<blink::WebString>& absolute_filenames) override; | 77 const blink::WebVector<blink::WebString>& absolute_filenames) override; |
80 long long GetCurrentTimeInMillisecond() override; | 78 long long GetCurrentTimeInMillisecond() override; |
81 blink::WebString GetAbsoluteWebStringFromUTF8Path( | 79 blink::WebString GetAbsoluteWebStringFromUTF8Path( |
82 const std::string& utf8_path) override; | 80 const std::string& utf8_path) override; |
83 blink::WebURL LocalFileToDataURL(const blink::WebURL& file_url) override; | 81 blink::WebURL LocalFileToDataURL(const blink::WebURL& file_url) override; |
84 blink::WebURL RewriteLayoutTestsURL(const std::string& utf8_url) override; | 82 blink::WebURL RewriteLayoutTestsURL(const std::string& utf8_url) override; |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 bool focus_on_next_commit_; | 204 bool focus_on_next_commit_; |
207 | 205 |
208 scoped_ptr<LeakDetector> leak_detector_; | 206 scoped_ptr<LeakDetector> leak_detector_; |
209 | 207 |
210 DISALLOW_COPY_AND_ASSIGN(BlinkTestRunner); | 208 DISALLOW_COPY_AND_ASSIGN(BlinkTestRunner); |
211 }; | 209 }; |
212 | 210 |
213 } // namespace content | 211 } // namespace content |
214 | 212 |
215 #endif // CONTENT_SHELL_RENDERER_LAYOUT_TEST_BLINK_TEST_RUNNER_H_ | 213 #endif // CONTENT_SHELL_RENDERER_LAYOUT_TEST_BLINK_TEST_RUNNER_H_ |
OLD | NEW |