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 <ostream> | 9 #include <ostream> |
10 #include <string> | 10 #include <string> |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 void OnLayoutTestRuntimeFlagsChanged( | 195 void OnLayoutTestRuntimeFlagsChanged( |
196 RenderFrameHost* sender, | 196 RenderFrameHost* sender, |
197 const base::DictionaryValue& changed_layout_test_runtime_flags); | 197 const base::DictionaryValue& changed_layout_test_runtime_flags); |
198 void OnLayoutDumpResponse(RenderFrameHost* sender, const std::string& dump); | 198 void OnLayoutDumpResponse(RenderFrameHost* sender, const std::string& dump); |
199 void OnPrintMessage(const std::string& message); | 199 void OnPrintMessage(const std::string& message); |
200 void OnOverridePreferences(const WebPreferences& prefs); | 200 void OnOverridePreferences(const WebPreferences& prefs); |
201 void OnTestFinished(); | 201 void OnTestFinished(); |
202 void OnClearDevToolsLocalStorage(); | 202 void OnClearDevToolsLocalStorage(); |
203 void OnShowDevTools(const std::string& settings, | 203 void OnShowDevTools(const std::string& settings, |
204 const std::string& frontend_url); | 204 const std::string& frontend_url); |
| 205 void OnEvaluateInDevTools(int call_id, const std::string& script); |
205 void OnCloseDevTools(); | 206 void OnCloseDevTools(); |
206 void OnGoToOffset(int offset); | 207 void OnGoToOffset(int offset); |
207 void OnReload(); | 208 void OnReload(); |
208 void OnLoadURLForFrame(const GURL& url, const std::string& frame_name); | 209 void OnLoadURLForFrame(const GURL& url, const std::string& frame_name); |
209 void OnCaptureSessionHistory(); | 210 void OnCaptureSessionHistory(); |
210 void OnCloseRemainingWindows(); | 211 void OnCloseRemainingWindows(); |
211 void OnResetDone(); | 212 void OnResetDone(); |
212 void OnLeakDetectionDone(const content::LeakDetectionResult& result); | 213 void OnLeakDetectionDone(const content::LeakDetectionResult& result); |
213 void OnSetBluetoothManualChooser(bool enable); | 214 void OnSetBluetoothManualChooser(bool enable); |
214 void OnGetBluetoothManualChooserEvents(); | 215 void OnGetBluetoothManualChooserEvents(); |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
276 // waiting on the UI thread while layout tests are being ran. | 277 // waiting on the UI thread while layout tests are being ran. |
277 ScopedAllowWaitForAndroidLayoutTests reduced_restrictions_; | 278 ScopedAllowWaitForAndroidLayoutTests reduced_restrictions_; |
278 #endif | 279 #endif |
279 | 280 |
280 DISALLOW_COPY_AND_ASSIGN(BlinkTestController); | 281 DISALLOW_COPY_AND_ASSIGN(BlinkTestController); |
281 }; | 282 }; |
282 | 283 |
283 } // namespace content | 284 } // namespace content |
284 | 285 |
285 #endif // CONTENT_SHELL_BROWSER_LAYOUT_TEST_BLINK_TEST_CONTROLLER_H_ | 286 #endif // CONTENT_SHELL_BROWSER_LAYOUT_TEST_BLINK_TEST_CONTROLLER_H_ |
OLD | NEW |