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

Unified Diff: content/common/view_messages.h

Issue 10544175: Add an ability to call WebKit's WebFrame::loadData via NavigationController. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Actually removed method decl from NavigationController interface Created 8 years, 5 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/view_messages.h
diff --git a/content/common/view_messages.h b/content/common/view_messages.h
index 1ec6b9be307edb71efa4972e72f3d43562d27184..ec224855fa2c89bd03b9647fec7c511d8dbabbe4 100644
--- a/content/common/view_messages.h
+++ b/content/common/view_messages.h
@@ -622,6 +622,14 @@ IPC_STRUCT_BEGIN(ViewMsg_Navigate_Params)
// The URL to load.
IPC_STRUCT_MEMBER(GURL, url)
+ // Base URL for use in WebKit's SubstituteData.
+ // Is only used with data: URLs.
+ IPC_STRUCT_MEMBER(GURL, base_url_for_data_url)
+
+ // History URL for use in WebKit's SubstituteData.
+ // Is only used with data: URLs.
+ IPC_STRUCT_MEMBER(GURL, history_url_for_data_url)
+
// The URL to send in the "Referer" header field. Can be empty if there is
// no referrer.
IPC_STRUCT_MEMBER(content::Referrer, referrer)

Powered by Google App Engine
This is Rietveld 408576698