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

Unified Diff: Source/modules/filesystem/FileWriter.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/FileSystemCallbacks.h ('k') | Source/modules/filesystem/FileWriterSync.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/filesystem/FileWriter.h
diff --git a/Source/modules/filesystem/FileWriter.h b/Source/modules/filesystem/FileWriter.h
index 419103bff40ff521b7b473b77feca12623000b00..07cda83c326dd2ab54ed6733f26d1237eb3ae5a5 100644
--- a/Source/modules/filesystem/FileWriter.h
+++ b/Source/modules/filesystem/FileWriter.h
@@ -60,7 +60,7 @@ class FileWriter final
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(FileWriter);
public:
static FileWriter* create(ExecutionContext*);
- virtual ~FileWriter();
+ ~FileWriter() override;
enum ReadyState {
INIT = 0,
@@ -76,17 +76,17 @@ public:
FileError* error() const { return m_error.get(); }
// WebFileWriterClient
- 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;
// ActiveDOMObject
- virtual void stop() override;
- virtual bool hasPendingActivity() const override;
+ void stop() override;
+ bool hasPendingActivity() const override;
// EventTarget
- virtual const AtomicString& interfaceName() const override;
- virtual ExecutionContext* executionContext() const override { return ActiveDOMObject::executionContext(); }
+ const AtomicString& interfaceName() const override;
+ ExecutionContext* executionContext() const override { return ActiveDOMObject::executionContext(); }
DEFINE_ATTRIBUTE_EVENT_LISTENER(writestart);
DEFINE_ATTRIBUTE_EVENT_LISTENER(progress);
« no previous file with comments | « Source/modules/filesystem/FileSystemCallbacks.h ('k') | Source/modules/filesystem/FileWriterSync.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698