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

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

Issue 135653002: Update modules classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove change to web/ Created 6 years, 11 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 2cc757875a2f9b52f65a76de535d4fd26ec70312..7306f8b78470a456f888cb22e9495e9476b44b76 100644
--- a/Source/modules/filesystem/FileWriter.h
+++ b/Source/modules/filesystem/FileWriter.h
@@ -47,7 +47,7 @@ class Blob;
class ExceptionState;
class ExecutionContext;
-class FileWriter : public ScriptWrappable, public FileWriterBase, public ActiveDOMObject, public EventTargetWithInlineData, public blink::WebFileWriterClient {
+class FileWriter FINAL : public ScriptWrappable, public FileWriterBase, public ActiveDOMObject, public EventTargetWithInlineData, public blink::WebFileWriterClient {
DEFINE_EVENT_TARGET_REFCOUNTING(FileWriterBase);
public:
static PassRefPtr<FileWriter> create(ExecutionContext*);
@@ -71,7 +71,7 @@ public:
virtual void didFail(blink::WebFileError) OVERRIDE;
// ActiveDOMObject
- virtual void stop();
+ virtual void stop() OVERRIDE;
// EventTarget
virtual const AtomicString& interfaceName() const OVERRIDE;
« 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