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

Unified Diff: content/child/plugin_messages.h

Issue 23830007: Support byte range requests when routing resource requests directly through the browser process. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 3 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/child/plugin_messages.h
===================================================================
--- content/child/plugin_messages.h (revision 223347)
+++ content/child/plugin_messages.h (working copy)
@@ -58,7 +58,7 @@
IPC_STRUCT_MEMBER(GURL, url)
IPC_STRUCT_MEMBER(GURL, first_party_for_cookies)
IPC_STRUCT_MEMBER(std::string, method)
- IPC_STRUCT_MEMBER(std::string, post_data)
+ IPC_STRUCT_MEMBER(std::vector<char>, post_data)
IPC_STRUCT_MEMBER(GURL, referrer)
IPC_STRUCT_MEMBER(bool, notify_redirect)
IPC_STRUCT_MEMBER(bool, is_plugin_src_load)
@@ -277,6 +277,9 @@
std::string /* range_info */,
int /* range_request_id */)
+IPC_MESSAGE_ROUTED0(PluginHostMsg_DidStartLoading)
+IPC_MESSAGE_ROUTED0(PluginHostMsg_DidStopLoading)
+
IPC_MESSAGE_ROUTED2(PluginHostMsg_DeferResourceLoading,
unsigned long /* resource_id */,
bool /* defer */)

Powered by Google App Engine
This is Rietveld 408576698