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

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

Issue 671663002: Standardize usage of virtual/override/final in content/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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: content/child/fileapi/webfilewriter_impl.h
diff --git a/content/child/fileapi/webfilewriter_impl.h b/content/child/fileapi/webfilewriter_impl.h
index 008a9843830b9b56928feba21380bd88162efa4a..8aefaf516988290a6448cc2a7f805e8cdbbe3728 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;
« no previous file with comments | « content/child/fileapi/webfilewriter_base_unittest.cc ('k') | content/child/geofencing/geofencing_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698