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

Unified Diff: components/test_runner/web_frame_test_proxy.h

Issue 2661743002: PlzNavigate: Invoke didStartProvisionalLoad() when the renderer initiates a navigation in startLoad( (Closed)
Patch Set: Remove CHECK for redirect chain as the redirects may not be populated for provisional loads for ren… Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/test_runner/web_frame_test_client.cc ('k') | content/browser/frame_host/navigator_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/test_runner/web_frame_test_proxy.h
diff --git a/components/test_runner/web_frame_test_proxy.h b/components/test_runner/web_frame_test_proxy.h
index ac444304046335918db5624824178fd29d0a7339..4f3186709a97c00189574c25a32aeb78ccf0ffc9 100644
--- a/components/test_runner/web_frame_test_proxy.h
+++ b/components/test_runner/web_frame_test_proxy.h
@@ -96,9 +96,9 @@ class WebFrameTestProxy : public Base, public WebFrameTestProxyBase {
replaces_current_history_item);
}
- void didStartProvisionalLoad(blink::WebLocalFrame* frame) override {
- test_client()->didStartProvisionalLoad(frame);
- Base::didStartProvisionalLoad(frame);
+ void didStartProvisionalLoad(blink::WebDataSource* data_source) override {
+ test_client()->didStartProvisionalLoad(data_source);
+ Base::didStartProvisionalLoad(data_source);
}
void didReceiveServerRedirectForProvisionalLoad(
« no previous file with comments | « components/test_runner/web_frame_test_client.cc ('k') | content/browser/frame_host/navigator_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698