| 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_WEBKIT_TEST_RUNNER_H_ | 5 #ifndef CONTENT_SHELL_WEBKIT_TEST_RUNNER_H_ |
| 6 #define CONTENT_SHELL_WEBKIT_TEST_RUNNER_H_ | 6 #define CONTENT_SHELL_WEBKIT_TEST_RUNNER_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 void EnableAutoResizeMode(const blink::WebSize& min_size, | 81 void EnableAutoResizeMode(const blink::WebSize& min_size, |
| 82 const blink::WebSize& max_size) override; | 82 const blink::WebSize& max_size) override; |
| 83 void DisableAutoResizeMode(const blink::WebSize& new_size) override; | 83 void DisableAutoResizeMode(const blink::WebSize& new_size) override; |
| 84 void ClearDevToolsLocalStorage() override; | 84 void ClearDevToolsLocalStorage() override; |
| 85 void ShowDevTools(const std::string& settings, | 85 void ShowDevTools(const std::string& settings, |
| 86 const std::string& frontend_url) override; | 86 const std::string& frontend_url) override; |
| 87 void CloseDevTools() override; | 87 void CloseDevTools() override; |
| 88 void EvaluateInWebInspector(long call_id, const std::string& script) override; | 88 void EvaluateInWebInspector(long call_id, const std::string& script) override; |
| 89 void ClearAllDatabases() override; | 89 void ClearAllDatabases() override; |
| 90 void SetDatabaseQuota(int quota) override; | 90 void SetDatabaseQuota(int quota) override; |
| 91 blink::WebNotificationPresenter::Permission CheckWebNotificationPermission( | |
| 92 const GURL& origin) override; | |
| 93 void GrantWebNotificationPermission(const GURL& origin, | 91 void GrantWebNotificationPermission(const GURL& origin, |
| 94 bool permission_granted) override; | 92 bool permission_granted) override; |
| 95 void ClearWebNotificationPermissions() override; | 93 void ClearWebNotificationPermissions() override; |
| 96 void SimulateWebNotificationClick(const std::string& title) override; | 94 void SimulateWebNotificationClick(const std::string& title) override; |
| 97 void SetDeviceScaleFactor(float factor) override; | 95 void SetDeviceScaleFactor(float factor) override; |
| 98 void SetDeviceColorProfile(const std::string& name) override; | 96 void SetDeviceColorProfile(const std::string& name) override; |
| 99 void SetBluetoothMockDataSet(const std::string& name) override; | 97 void SetBluetoothMockDataSet(const std::string& name) override; |
| 100 void SetFocus(WebTestProxyBase* proxy, bool focus) override; | 98 void SetFocus(WebTestProxyBase* proxy, bool focus) override; |
| 101 void SetAcceptAllCookies(bool accept) override; | 99 void SetAcceptAllCookies(bool accept) override; |
| 102 std::string PathToLocalResource(const std::string& resource) override; | 100 std::string PathToLocalResource(const std::string& resource) override; |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 | 152 |
| 155 scoped_ptr<LeakDetector> leak_detector_; | 153 scoped_ptr<LeakDetector> leak_detector_; |
| 156 bool needs_leak_detector_; | 154 bool needs_leak_detector_; |
| 157 | 155 |
| 158 DISALLOW_COPY_AND_ASSIGN(WebKitTestRunner); | 156 DISALLOW_COPY_AND_ASSIGN(WebKitTestRunner); |
| 159 }; | 157 }; |
| 160 | 158 |
| 161 } // namespace content | 159 } // namespace content |
| 162 | 160 |
| 163 #endif // CONTENT_SHELL_WEBKIT_TEST_RUNNER_H_ | 161 #endif // CONTENT_SHELL_WEBKIT_TEST_RUNNER_H_ |
| OLD | NEW |