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

Unified Diff: content/child/fileapi/webfilewriter_impl.h

Issue 23223003: Chromium Blob hacking (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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
Index: content/child/fileapi/webfilewriter_impl.h
diff --git a/content/child/fileapi/webfilewriter_impl.h b/content/child/fileapi/webfilewriter_impl.h
index 69b979b020d89558b16c12e52048d24f5e378cc0..e53c236aeb7ee0242ccfd8b97b5ac774becc18c3 100644
--- a/content/child/fileapi/webfilewriter_impl.h
+++ b/content/child/fileapi/webfilewriter_impl.h
@@ -5,6 +5,8 @@
#ifndef CONTENT_CHILD_FILEAPI_WEBFILEWRITER_IMPL_H_
#define CONTENT_CHILD_FILEAPI_WEBFILEWRITER_IMPL_H_
+#include <string>
+
#include "base/memory/ref_counted.h"
#include "base/memory/weak_ptr.h"
#include "base/message_loop/message_loop_proxy.h"
@@ -30,7 +32,10 @@ class WebFileWriterImpl : public WebFileWriterBase,
protected:
// WebFileWriterBase overrides
virtual void DoTruncate(const GURL& path, int64 offset) OVERRIDE;
- virtual void DoWrite(const GURL& path, const GURL& blob_url,
+ virtual void DoWriteDeprecated(
+ const GURL& path, const GURL& blob_url,
+ int64 offset) OVERRIDE;
kinuko 2013/08/28 17:24:31 nit: indent
michaeln 2013/08/28 20:48:02 Done.
+ virtual void DoWrite(const GURL& path, const std::string& blob_id,
int64 offset) OVERRIDE;
virtual void DoCancel() OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698