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

Unified Diff: webkit/common/blob/blob_data.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/blob/blob_data.h
diff --git a/webkit/common/blob/blob_data.h b/webkit/common/blob/blob_data.h
index 3ea6e9123d01dede2485b30a062273c7d8e4bc4f..a122cb6ce1c2551ac9d2a2e5da8d7a7d79afd4ca 100644
--- a/webkit/common/blob/blob_data.h
+++ b/webkit/common/blob/blob_data.h
@@ -39,6 +39,10 @@ class WEBKIT_STORAGE_COMMON_EXPORT BlobData
void AppendBlob(const std::string& uuid, uint64 offset, uint64 length);
void AppendFileSystemFile(const GURL& url, uint64 offset, uint64 length,
const base::Time& expected_modification_time);
+#if defined(OS_ANDROID)
+ void AppendContentUrlFile(const GURL& url, uint64 offset, uint64 length,
+ const base::Time& expected_modification_time);
+#endif
void AttachShareableFileReference(ShareableFileReference* reference) {
shareable_files_.push_back(reference);

Powered by Google App Engine
This is Rietveld 408576698