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

Unified Diff: content/common/resource_messages.h

Issue 10834289: Split net::UploadData into two: for IPC and for upload handling (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase + moved ResolveBlobRef from webkit_blob to webkit_glue Created 8 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
« no previous file with comments | « content/common/resource_dispatcher.cc ('k') | content/public/common/common_param_traits.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/resource_messages.h
diff --git a/content/common/resource_messages.h b/content/common/resource_messages.h
index 69a2ae63e8256fcba2dde554a89c8b24503ce5c1..638d238458ccaaa4e92f60fab46cd99e295955e0 100644
--- a/content/common/resource_messages.h
+++ b/content/common/resource_messages.h
@@ -9,7 +9,7 @@
#include "content/public/common/common_param_traits.h"
#include "content/public/common/resource_response.h"
#include "ipc/ipc_message_macros.h"
-#include "net/base/upload_data.h"
+#include "webkit/glue/resource_request_body.h"
#define IPC_MESSAGE_START ResourceMsgStart
#undef IPC_MESSAGE_EXPORT
@@ -94,8 +94,9 @@ IPC_STRUCT_BEGIN(ResourceHostMsg_Request)
// or kNoHostId.
IPC_STRUCT_MEMBER(int, appcache_host_id)
- // Optional upload data (may be null).
- IPC_STRUCT_MEMBER(scoped_refptr<net::UploadData>, upload_data)
+ // Optional resource request body (may be null).
+ IPC_STRUCT_MEMBER(scoped_refptr<webkit_glue::ResourceRequestBody>,
+ request_body)
IPC_STRUCT_MEMBER(bool, download_to_file)
« no previous file with comments | « content/common/resource_dispatcher.cc ('k') | content/public/common/common_param_traits.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698