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

Unified Diff: Source/modules/filesystem/FileWriterSync.h

Issue 1227783004: Fix virtual/override/final usage in Source/modules/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase 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/modules/filesystem/FileWriter.h ('k') | Source/modules/filesystem/InspectorFileSystemAgent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/filesystem/FileWriterSync.h
diff --git a/Source/modules/filesystem/FileWriterSync.h b/Source/modules/filesystem/FileWriterSync.h
index 82bd91c59fa4264831eb7e19704a230ad5fb8ca7..d88a15ec2e3a5681348f77a84db8c3f619f64159 100644
--- a/Source/modules/filesystem/FileWriterSync.h
+++ b/Source/modules/filesystem/FileWriterSync.h
@@ -58,7 +58,7 @@ public:
{
return new FileWriterSync();
}
- virtual ~FileWriterSync();
+ ~FileWriterSync() override;
DECLARE_VIRTUAL_TRACE();
// FileWriterBase
@@ -67,9 +67,9 @@ public:
void truncate(long long length, ExceptionState&);
// WebFileWriterClient, via FileWriterBase
- virtual void didWrite(long long bytes, bool complete) override;
- virtual void didTruncate() override;
- virtual void didFail(WebFileError) override;
+ void didWrite(long long bytes, bool complete) override;
+ void didTruncate() override;
+ void didFail(WebFileError) override;
private:
FileWriterSync();
« no previous file with comments | « Source/modules/filesystem/FileWriter.h ('k') | Source/modules/filesystem/InspectorFileSystemAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698