| 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 void ClearDevToolsLocalStorage() override; | 92 void ClearDevToolsLocalStorage() override; |
| 93 void ShowDevTools(const std::string& settings, | 93 void ShowDevTools(const std::string& settings, |
| 94 const std::string& frontend_url) override; | 94 const std::string& frontend_url) override; |
| 95 void CloseDevTools() override; | 95 void CloseDevTools() override; |
| 96 void EvaluateInWebInspector(long call_id, const std::string& script) override; | 96 void EvaluateInWebInspector(long call_id, const std::string& script) override; |
| 97 std::string EvaluateInWebInspectorOverlay(const std::string& script) override; | 97 std::string EvaluateInWebInspectorOverlay(const std::string& script) override; |
| 98 void ClearAllDatabases() override; | 98 void ClearAllDatabases() override; |
| 99 void SetDatabaseQuota(int quota) override; | 99 void SetDatabaseQuota(int quota) override; |
| 100 void SimulateWebNotificationClick(const std::string& title, | 100 void SimulateWebNotificationClick(const std::string& title, |
| 101 int action_index) override; | 101 int action_index) override; |
| 102 void SimulateWebNotificationClose(const std::string& title, |
| 103 bool by_user) override; |
| 102 void SetDeviceScaleFactor(float factor) override; | 104 void SetDeviceScaleFactor(float factor) override; |
| 103 void SetDeviceColorProfile(const std::string& name) override; | 105 void SetDeviceColorProfile(const std::string& name) override; |
| 104 void EnableUseZoomForDSF() override; | 106 void EnableUseZoomForDSF() override; |
| 105 void SetBluetoothMockDataSet(const std::string& name) override; | 107 void SetBluetoothMockDataSet(const std::string& name) override; |
| 106 void SetBluetoothManualChooser() override; | 108 void SetBluetoothManualChooser() override; |
| 107 void GetBluetoothManualChooserEvents( | 109 void GetBluetoothManualChooserEvents( |
| 108 const base::Callback<void(const std::vector<std::string>&)>& callback) | 110 const base::Callback<void(const std::vector<std::string>&)>& callback) |
| 109 override; | 111 override; |
| 110 void SendBluetoothManualChooserEvent(const std::string& event, | 112 void SendBluetoothManualChooserEvent(const std::string& event, |
| 111 const std::string& argument) override; | 113 const std::string& argument) override; |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 bool focus_on_next_commit_; | 206 bool focus_on_next_commit_; |
| 205 | 207 |
| 206 scoped_ptr<LeakDetector> leak_detector_; | 208 scoped_ptr<LeakDetector> leak_detector_; |
| 207 | 209 |
| 208 DISALLOW_COPY_AND_ASSIGN(BlinkTestRunner); | 210 DISALLOW_COPY_AND_ASSIGN(BlinkTestRunner); |
| 209 }; | 211 }; |
| 210 | 212 |
| 211 } // namespace content | 213 } // namespace content |
| 212 | 214 |
| 213 #endif // CONTENT_SHELL_RENDERER_LAYOUT_TEST_BLINK_TEST_RUNNER_H_ | 215 #endif // CONTENT_SHELL_RENDERER_LAYOUT_TEST_BLINK_TEST_RUNNER_H_ |
| OLD | NEW |