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

Unified Diff: webkit/glue/resource_request_body.h

Issue 11439008: net: Change argument of URLRequest::set_upload from UploadData to UploadDataStream (Closed) Base URL: http://git.chromium.org/chromium/src.git@chunk
Patch Set: Fix android Created 8 years 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 | « net/url_request/url_request_unittest.cc ('k') | webkit/glue/resource_request_body.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/resource_request_body.h
diff --git a/webkit/glue/resource_request_body.h b/webkit/glue/resource_request_body.h
index 0ad85316bd91cae928d01ce7d032e9149e3f3070..1d12e07598c4aacbf81f3e5585c97a75aa220921 100644
--- a/webkit/glue/resource_request_body.h
+++ b/webkit/glue/resource_request_body.h
@@ -14,8 +14,7 @@
#include "webkit/glue/webkit_glue_export.h"
namespace net {
-class UploadData;
-class UploadElement;
+class UploadDataStream;
}
namespace webkit_blob {
@@ -42,10 +41,10 @@ class WEBKIT_GLUE_EXPORT ResourceRequestBody
void AppendFileSystemFileRange(const GURL& url, uint64 offset, uint64 length,
const base::Time& expected_modification_time);
- // Creates a new UploadData from this request body. This also resolves
+ // Creates a new UploadDataStream from this request body. This also resolves
// any blob references using given |blob_controller|.
// TODO(kinuko): Clean up this hack.
- net::UploadData* ResolveElementsAndCreateUploadData(
+ net::UploadDataStream* ResolveElementsAndCreateUploadDataStream(
webkit_blob::BlobStorageController* blob_controller);
const std::vector<Element>* elements() const { return &elements_; }
« no previous file with comments | « net/url_request/url_request_unittest.cc ('k') | webkit/glue/resource_request_body.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698