| 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 OnLayoutDumpFlagsChanged( | 195 void OnLayoutDumpFlagsChanged( |
| 196 RenderFrameHost* sender, | 196 RenderFrameHost* sender, |
| 197 const base::DictionaryValue& changed_layout_dump_flags); | 197 const base::DictionaryValue& changed_layout_dump_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); | |
| 206 void OnCloseDevTools(); | 205 void OnCloseDevTools(); |
| 207 void OnGoToOffset(int offset); | 206 void OnGoToOffset(int offset); |
| 208 void OnReload(); | 207 void OnReload(); |
| 209 void OnLoadURLForFrame(const GURL& url, const std::string& frame_name); | 208 void OnLoadURLForFrame(const GURL& url, const std::string& frame_name); |
| 210 void OnCaptureSessionHistory(); | 209 void OnCaptureSessionHistory(); |
| 211 void OnCloseRemainingWindows(); | 210 void OnCloseRemainingWindows(); |
| 212 void OnResetDone(); | 211 void OnResetDone(); |
| 213 void OnLeakDetectionDone(const content::LeakDetectionResult& result); | 212 void OnLeakDetectionDone(const content::LeakDetectionResult& result); |
| 214 void OnSetBluetoothManualChooser(bool enable); | 213 void OnSetBluetoothManualChooser(bool enable); |
| 215 void OnGetBluetoothManualChooserEvents(); | 214 void OnGetBluetoothManualChooserEvents(); |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 // waiting on the UI thread while layout tests are being ran. | 276 // waiting on the UI thread while layout tests are being ran. |
| 278 ScopedAllowWaitForAndroidLayoutTests reduced_restrictions_; | 277 ScopedAllowWaitForAndroidLayoutTests reduced_restrictions_; |
| 279 #endif | 278 #endif |
| 280 | 279 |
| 281 DISALLOW_COPY_AND_ASSIGN(BlinkTestController); | 280 DISALLOW_COPY_AND_ASSIGN(BlinkTestController); |
| 282 }; | 281 }; |
| 283 | 282 |
| 284 } // namespace content | 283 } // namespace content |
| 285 | 284 |
| 286 #endif // CONTENT_SHELL_BROWSER_LAYOUT_TEST_BLINK_TEST_CONTROLLER_H_ | 285 #endif // CONTENT_SHELL_BROWSER_LAYOUT_TEST_BLINK_TEST_CONTROLLER_H_ |
| OLD | NEW |