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

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

Issue 635233004: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/modules (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.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
« no previous file with comments | « Source/modules/filesystem/DOMFileSystem.h ('k') | Source/modules/filesystem/DOMFileSystemSync.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/filesystem/DOMFileSystemSync.h
diff --git a/Source/modules/filesystem/DOMFileSystemSync.h b/Source/modules/filesystem/DOMFileSystemSync.h
index f728a1e791e37977e0cebc3ff75ad2cf86ab2849..aecac952a1217ec7792b1b6da906ed399c59ab1e 100644
--- a/Source/modules/filesystem/DOMFileSystemSync.h
+++ b/Source/modules/filesystem/DOMFileSystemSync.h
@@ -43,7 +43,7 @@ class FileEntrySync;
class FileWriterSync;
class ExceptionState;
-class DOMFileSystemSync FINAL : public DOMFileSystemBase, public ScriptWrappable {
+class DOMFileSystemSync final : public DOMFileSystemBase, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
static DOMFileSystemSync* create(ExecutionContext* context, const String& name, FileSystemType type, const KURL& rootURL)
@@ -55,7 +55,7 @@ public:
virtual ~DOMFileSystemSync();
- virtual void reportError(ErrorCallback*, FileError*) OVERRIDE;
+ virtual void reportError(ErrorCallback*, FileError*) override;
DirectoryEntrySync* root();
« no previous file with comments | « Source/modules/filesystem/DOMFileSystem.h ('k') | Source/modules/filesystem/DOMFileSystemSync.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698