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

Unified Diff: content/shell/test_runner/web_frame_test_proxy.h

Issue 2734633002: PlzNavigate: Fix the http/tests/loading/307-after-303-after-post.html and the http/tests/loading/re… (Closed)
Patch Set: Fix comment Created 3 years, 9 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
Index: content/shell/test_runner/web_frame_test_proxy.h
diff --git a/content/shell/test_runner/web_frame_test_proxy.h b/content/shell/test_runner/web_frame_test_proxy.h
index 1de2be92b76bacda8f33a7a813ec3208f915458b..6a3db31c72cfce443c60ddff9c0d06c0b8e3718f 100644
--- a/content/shell/test_runner/web_frame_test_proxy.h
+++ b/content/shell/test_runner/web_frame_test_proxy.h
@@ -96,9 +96,10 @@ class WebFrameTestProxy : public Base, public WebFrameTestProxyBase {
replaces_current_history_item);
}
- void didStartProvisionalLoad(blink::WebDataSource* data_source) override {
- test_client()->didStartProvisionalLoad(data_source);
- Base::didStartProvisionalLoad(data_source);
+ void didStartProvisionalLoad(blink::WebDataSource* data_source,
+ blink::WebURLRequest& request) override {
+ test_client()->didStartProvisionalLoad(data_source, request);
+ Base::didStartProvisionalLoad(data_source, request);
}
void didReceiveServerRedirectForProvisionalLoad(

Powered by Google App Engine
This is Rietveld 408576698