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

Unified Diff: content/common/view_messages.h

Issue 10829044: Implement NavigationControllerWebView.PostURL (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix nits. Use RefCountedBytes. 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 c59a2115d2590fa82577e1b8816c5617a6b2b71d..478758165c4b3736310ddb2a5addf6476551031f 100644
--- a/content/common/view_messages.h
+++ b/content/common/view_messages.h
@@ -693,6 +693,13 @@ IPC_STRUCT_BEGIN(ViewMsg_Navigate_Params)
// Whether or not the user agent override string should be used.
IPC_STRUCT_MEMBER(bool, is_overriding_user_agent)
+
+ // True if this was a post request.
+ IPC_STRUCT_MEMBER(bool, is_post)
+
+ // If is_post is true, holds the post_data information from browser. Empty
+ // otherwise.
+ IPC_STRUCT_MEMBER(std::vector<unsigned char>, browser_initiated_post_data)
IPC_STRUCT_END()
IPC_STRUCT_BEGIN(ViewMsg_New_Params)

Powered by Google App Engine
This is Rietveld 408576698