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

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

Issue 2781723007: Plumb initiator out of Blink. (Closed)
Patch Set: 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 6a3db31c72cfce443c60ddff9c0d06c0b8e3718f..671b1dad850deb358fbe65e54382fa216f54168e 100644
--- a/content/shell/test_runner/web_frame_test_proxy.h
+++ b/content/shell/test_runner/web_frame_test_proxy.h
@@ -96,10 +96,12 @@ class WebFrameTestProxy : public Base, public WebFrameTestProxyBase {
replaces_current_history_item);
}
- void didStartProvisionalLoad(blink::WebDataSource* data_source,
+ void didStartProvisionalLoad(blink::WebLocalFrame* initiator_frame,
+ blink::WebDataSource* data_source,
blink::WebURLRequest& request) override {
- test_client()->didStartProvisionalLoad(data_source, request);
- Base::didStartProvisionalLoad(data_source, request);
+ test_client()->didStartProvisionalLoad(initiator_frame, data_source,
+ request);
+ Base::didStartProvisionalLoad(initiator_frame, data_source, request);
}
void didReceiveServerRedirectForProvisionalLoad(
« no previous file with comments | « content/shell/test_runner/web_frame_test_client.cc ('k') | third_party/WebKit/Source/core/frame/LocalFrameClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698