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

Unified Diff: webkit/common/resource_request_body.h

Issue 46303005: Fix chrome upload with content uri (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 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: webkit/common/resource_request_body.h
diff --git a/webkit/common/resource_request_body.h b/webkit/common/resource_request_body.h
index ccfc1f3e58d50917d438f65e65dfb9792d5d526b..8ce5ea30d7b747cbf2134a775d4002d70fb09b3f 100644
--- a/webkit/common/resource_request_body.h
+++ b/webkit/common/resource_request_body.h
@@ -37,6 +37,10 @@ class WEBKIT_COMMON_EXPORT ResourceRequestBody
void AppendBlob(const std::string& uuid);
void AppendFileSystemFileRange(const GURL& url, uint64 offset, uint64 length,
const base::Time& expected_modification_time);
+#if defined(OS_ANDROID)
+ void AppendContentUrlRange(const GURL& url, uint64 offset, uint64 length,
+ const base::Time& expected_modification_time);
+#endif
const std::vector<Element>* elements() const { return &elements_; }
std::vector<Element>* elements_mutable() { return &elements_; }

Powered by Google App Engine
This is Rietveld 408576698