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

Unified Diff: content/common/frame_messages.h

Issue 379143002: PlzNavigate: implement RequestNavigation in the no live renderer case (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase on top of issue 471603002 Created 6 years, 4 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/common/frame_messages.h
diff --git a/content/common/frame_messages.h b/content/common/frame_messages.h
index 45b4f8184e6f8f786820ce74ef75bb5a0be60f83..8e1d8e6220210fdf603ad0a0c5b146c4a78d0ec6 100644
--- a/content/common/frame_messages.h
+++ b/content/common/frame_messages.h
@@ -271,6 +271,7 @@ IPC_STRUCT_BEGIN(FrameHostMsg_OpenURL_Params)
IPC_STRUCT_MEMBER(bool, user_gesture)
IPC_STRUCT_END()
+// PlzNavigate
IPC_STRUCT_BEGIN(FrameHostMsg_BeginNavigation_Params)
// The request method: GET, POST, etc.
IPC_STRUCT_MEMBER(std::string, method)
@@ -279,10 +280,7 @@ IPC_STRUCT_BEGIN(FrameHostMsg_BeginNavigation_Params)
IPC_STRUCT_MEMBER(GURL, url)
// The referrer to use (may be empty).
- IPC_STRUCT_MEMBER(GURL, referrer)
-
- // The referrer policy to use.
- IPC_STRUCT_MEMBER(blink::WebReferrerPolicy, referrer_policy)
+ IPC_STRUCT_MEMBER(content::Referrer, referrer)
// Additional HTTP request headers.
IPC_STRUCT_MEMBER(std::string, headers)

Powered by Google App Engine
This is Rietveld 408576698