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 |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 void ApplyPreferences() override; | 84 void ApplyPreferences() override; |
85 virtual std::string makeURLErrorDescription(const blink::WebURLError& error); | 85 virtual std::string makeURLErrorDescription(const blink::WebURLError& error); |
86 void UseUnfortunateSynchronousResizeMode(bool enable) override; | 86 void UseUnfortunateSynchronousResizeMode(bool enable) override; |
87 void EnableAutoResizeMode(const blink::WebSize& min_size, | 87 void EnableAutoResizeMode(const blink::WebSize& min_size, |
88 const blink::WebSize& max_size) override; | 88 const blink::WebSize& max_size) override; |
89 void DisableAutoResizeMode(const blink::WebSize& new_size) override; | 89 void DisableAutoResizeMode(const blink::WebSize& new_size) override; |
90 void ClearDevToolsLocalStorage() override; | 90 void ClearDevToolsLocalStorage() override; |
91 void ShowDevTools(const std::string& settings, | 91 void ShowDevTools(const std::string& settings, |
92 const std::string& frontend_url) override; | 92 const std::string& frontend_url) override; |
93 void CloseDevTools() override; | 93 void CloseDevTools() override; |
94 void EvaluateInWebInspector(long call_id, const std::string& script) override; | 94 void EvaluateInWebInspector(int call_id, const std::string& script) override; |
95 std::string EvaluateInWebInspectorOverlay(const std::string& script) override; | 95 std::string EvaluateInWebInspectorOverlay(const std::string& script) override; |
96 void ClearAllDatabases() override; | 96 void ClearAllDatabases() override; |
97 void SetDatabaseQuota(int quota) override; | 97 void SetDatabaseQuota(int quota) override; |
98 void SimulateWebNotificationClick(const std::string& title, | 98 void SimulateWebNotificationClick(const std::string& title, |
99 int action_index) override; | 99 int action_index) override; |
100 void SimulateWebNotificationClose(const std::string& title, | 100 void SimulateWebNotificationClose(const std::string& title, |
101 bool by_user) override; | 101 bool by_user) override; |
102 void SetDeviceScaleFactor(float factor) override; | 102 void SetDeviceScaleFactor(float factor) override; |
103 void SetDeviceColorProfile(const std::string& name) override; | 103 void SetDeviceColorProfile(const std::string& name) override; |
104 void EnableUseZoomForDSF() override; | 104 void EnableUseZoomForDSF() override; |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 bool focus_on_next_commit_; | 210 bool focus_on_next_commit_; |
211 | 211 |
212 scoped_ptr<LeakDetector> leak_detector_; | 212 scoped_ptr<LeakDetector> leak_detector_; |
213 | 213 |
214 DISALLOW_COPY_AND_ASSIGN(BlinkTestRunner); | 214 DISALLOW_COPY_AND_ASSIGN(BlinkTestRunner); |
215 }; | 215 }; |
216 | 216 |
217 } // namespace content | 217 } // namespace content |
218 | 218 |
219 #endif // CONTENT_SHELL_RENDERER_LAYOUT_TEST_BLINK_TEST_RUNNER_H_ | 219 #endif // CONTENT_SHELL_RENDERER_LAYOUT_TEST_BLINK_TEST_RUNNER_H_ |
OLD | NEW |