diff options
Diffstat (limited to 'content/child/fileapi/webfilewriter_impl.h')
-rw-r--r-- | content/child/fileapi/webfilewriter_impl.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/content/child/fileapi/webfilewriter_impl.h b/content/child/fileapi/webfilewriter_impl.h index 69b979b..c4a5995 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,9 @@ 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; + virtual void DoWrite(const GURL& path, const std::string& blob_id, int64 offset) OVERRIDE; virtual void DoCancel() OVERRIDE; |