| 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 <memory> | 9 #include <memory> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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( | 100 void SimulateWebNotificationClick( |
| 101 const std::string& title, | 101 const std::string& title, |
| 102 int action_index, | 102 int action_index, |
| 103 const base::NullableString16& reply) override; | 103 const base::NullableString16& reply) override; |
| 104 void SimulateWebNotificationClose(const std::string& title, | 104 void SimulateWebNotificationClose(const std::string& title, |
| 105 bool by_user) override; | 105 bool by_user) override; |
| 106 void SetDeviceScaleFactor(float factor) override; | 106 void SetDeviceScaleFactor(float factor) override; |
| 107 void SetDeviceColorProfile(const std::string& name) override; | 107 void SetDeviceColorSpace(const std::string& name) override; |
| 108 float GetWindowToViewportScale() override; | 108 float GetWindowToViewportScale() override; |
| 109 std::unique_ptr<blink::WebInputEvent> TransformScreenToWidgetCoordinates( | 109 std::unique_ptr<blink::WebInputEvent> TransformScreenToWidgetCoordinates( |
| 110 test_runner::WebWidgetTestProxyBase* web_widget_test_proxy_base, | 110 test_runner::WebWidgetTestProxyBase* web_widget_test_proxy_base, |
| 111 const blink::WebInputEvent& event) override; | 111 const blink::WebInputEvent& event) override; |
| 112 test_runner::WebWidgetTestProxyBase* GetWebWidgetTestProxyBase( | 112 test_runner::WebWidgetTestProxyBase* GetWebWidgetTestProxyBase( |
| 113 blink::WebLocalFrame* frame) override; | 113 blink::WebLocalFrame* frame) override; |
| 114 void EnableUseZoomForDSF() override; | 114 void EnableUseZoomForDSF() override; |
| 115 bool IsUseZoomForDSFEnabled() override; | 115 bool IsUseZoomForDSFEnabled() override; |
| 116 void SetBluetoothFakeAdapter(const std::string& adapter_name, | 116 void SetBluetoothFakeAdapter(const std::string& adapter_name, |
| 117 const base::Closure& callback) override; | 117 const base::Closure& callback) override; |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 std::unique_ptr<test_runner::AppBannerService> app_banner_service_; | 224 std::unique_ptr<test_runner::AppBannerService> app_banner_service_; |
| 225 | 225 |
| 226 std::unique_ptr<LeakDetector> leak_detector_; | 226 std::unique_ptr<LeakDetector> leak_detector_; |
| 227 | 227 |
| 228 DISALLOW_COPY_AND_ASSIGN(BlinkTestRunner); | 228 DISALLOW_COPY_AND_ASSIGN(BlinkTestRunner); |
| 229 }; | 229 }; |
| 230 | 230 |
| 231 } // namespace content | 231 } // namespace content |
| 232 | 232 |
| 233 #endif // CONTENT_SHELL_RENDERER_LAYOUT_TEST_BLINK_TEST_RUNNER_H_ | 233 #endif // CONTENT_SHELL_RENDERER_LAYOUT_TEST_BLINK_TEST_RUNNER_H_ |
| OLD | NEW |