summaryrefslogtreecommitdiffstats
path: root/content/child/fileapi/webfilewriter_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'content/child/fileapi/webfilewriter_impl.h')
-rw-r--r--content/child/fileapi/webfilewriter_impl.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/content/child/fileapi/webfilewriter_impl.h b/content/child/fileapi/webfilewriter_impl.h
index 008a984..8aefaf5 100644
--- a/content/child/fileapi/webfilewriter_impl.h
+++ b/content/child/fileapi/webfilewriter_impl.h
@@ -31,10 +31,11 @@ class WebFileWriterImpl : public WebFileWriterBase,
protected:
// WebFileWriterBase overrides
- virtual void DoTruncate(const GURL& path, int64 offset) override;
- virtual void DoWrite(const GURL& path, const std::string& blob_id,
- int64 offset) override;
- virtual void DoCancel() override;
+ void DoTruncate(const GURL& path, int64 offset) override;
+ void DoWrite(const GURL& path,
+ const std::string& blob_id,
+ int64 offset) override;
+ void DoCancel() override;
private:
class WriterBridge;