Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(663)

Side by Side Diff: components/test_runner/web_test_delegate.h

Issue 1840823002: Extract WebViewClient implementation out of WebTestProxyBase. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@separate-pixel-dump-code
Patch Set: Expanding a comment + an IWYU fix. Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 COMPONENTS_TEST_RUNNER_WEB_TEST_DELEGATE_H_ 5 #ifndef COMPONENTS_TEST_RUNNER_WEB_TEST_DELEGATE_H_
6 #define COMPONENTS_TEST_RUNNER_WEB_TEST_DELEGATE_H_ 6 #define COMPONENTS_TEST_RUNNER_WEB_TEST_DELEGATE_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 // being available or not. 190 // being available or not.
191 virtual void SetGeofencingMockProvider(bool service_available) = 0; 191 virtual void SetGeofencingMockProvider(bool service_available) = 0;
192 192
193 // Disables mock geofencing service while running a layout test. 193 // Disables mock geofencing service while running a layout test.
194 virtual void ClearGeofencingMockProvider() = 0; 194 virtual void ClearGeofencingMockProvider() = 0;
195 195
196 // Set the mock geofencing position while running a layout test. 196 // Set the mock geofencing position while running a layout test.
197 virtual void SetGeofencingMockPosition(double latitude, double longitude) = 0; 197 virtual void SetGeofencingMockPosition(double latitude, double longitude) = 0;
198 198
199 // Controls which WebView should be focused. 199 // Controls which WebView should be focused.
200 virtual void SetFocus(WebTestProxyBase* proxy, bool focus) = 0; 200 virtual void SetFocus(blink::WebView* web_view, bool focus) = 0;
201 201
202 // Controls whether all cookies should be accepted or writing cookies in a 202 // Controls whether all cookies should be accepted or writing cookies in a
203 // third-party context is blocked. 203 // third-party context is blocked.
204 virtual void SetAcceptAllCookies(bool accept) = 0; 204 virtual void SetAcceptAllCookies(bool accept) = 0;
205 205
206 // The same as RewriteLayoutTestsURL unless the resource is a path starting 206 // The same as RewriteLayoutTestsURL unless the resource is a path starting
207 // with /tmp/, then return a file URL to a temporary file. 207 // with /tmp/, then return a file URL to a temporary file.
208 virtual std::string PathToLocalResource(const std::string& resource) = 0; 208 virtual std::string PathToLocalResource(const std::string& resource) = 0;
209 209
210 // Sets the POSIX locale of the current process. 210 // Sets the POSIX locale of the current process.
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 virtual blink::WebPlugin* CreatePluginPlaceholder( 276 virtual blink::WebPlugin* CreatePluginPlaceholder(
277 blink::WebLocalFrame* frame, 277 blink::WebLocalFrame* frame,
278 const blink::WebPluginParams& params) = 0; 278 const blink::WebPluginParams& params) = 0;
279 279
280 virtual float GetDeviceScaleFactorForTest() const = 0; 280 virtual float GetDeviceScaleFactorForTest() const = 0;
281 }; 281 };
282 282
283 } // namespace test_runner 283 } // namespace test_runner
284 284
285 #endif // COMPONENTS_TEST_RUNNER_WEB_TEST_DELEGATE_H_ 285 #endif // COMPONENTS_TEST_RUNNER_WEB_TEST_DELEGATE_H_
OLDNEW
« no previous file with comments | « components/test_runner/web_frame_test_proxy.cc ('k') | components/test_runner/web_test_interfaces.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698