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

Unified Diff: Source/core/fileapi/File.h

Issue 1232333002: Fix virtual/override/final usage in the rest of Source/core/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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
« no previous file with comments | « Source/core/fileapi/Blob.cpp ('k') | Source/core/fileapi/FileReader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/fileapi/File.h
diff --git a/Source/core/fileapi/File.h b/Source/core/fileapi/File.h
index 462dd26cc1b6af10cea5a7ecc926a09359d7bd5d..68ed9ce5325f9d38f16823c846c0992985982b2a 100644
--- a/Source/core/fileapi/File.h
+++ b/Source/core/fileapi/File.h
@@ -112,14 +112,14 @@ public:
File* clone(const String& name = String()) const;
- virtual unsigned long long size() const override;
- virtual Blob* slice(long long start, long long end, const String& contentType, ExceptionState&) const override;
- virtual void close(ExecutionContext*, ExceptionState&) override;
+ unsigned long long size() const override;
+ Blob* slice(long long start, long long end, const String& contentType, ExceptionState&) const override;
+ void close(ExecutionContext*, ExceptionState&) override;
- virtual bool isFile() const override { return true; }
- virtual bool hasBackingFile() const override { return m_hasBackingFile; }
+ bool isFile() const override { return true; }
+ bool hasBackingFile() const override { return m_hasBackingFile; }
- virtual void appendTo(BlobData&) const override;
+ void appendTo(BlobData&) const override;
const String& path() const { ASSERT(hasValidFilePath()); return m_path; }
const String name() const { return m_name; }
« no previous file with comments | « Source/core/fileapi/Blob.cpp ('k') | Source/core/fileapi/FileReader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698