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

Unified Diff: Source/modules/filesystem/FileEntrySync.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/FileEntry.h ('k') | Source/modules/filesystem/FileSystemCallbacks.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/filesystem/FileEntrySync.h
diff --git a/Source/modules/filesystem/FileEntrySync.h b/Source/modules/filesystem/FileEntrySync.h
index ce1400e446772ababe0eea8e82b639966bdf2577..78d47bf9c2d0f172afd8cfbda146c5523ee6cda8 100644
--- a/Source/modules/filesystem/FileEntrySync.h
+++ b/Source/modules/filesystem/FileEntrySync.h
@@ -41,7 +41,7 @@ class ExceptionState;
class File;
class FileWriterSync;
-class FileEntrySync FINAL : public EntrySync {
+class FileEntrySync final : public EntrySync {
DEFINE_WRAPPERTYPEINFO();
public:
static FileEntrySync* create(DOMFileSystemBase* fileSystem, const String& fullPath)
@@ -49,12 +49,12 @@ public:
return new FileEntrySync(fileSystem, fullPath);
}
- virtual bool isFile() const OVERRIDE { return true; }
+ virtual bool isFile() const override { return true; }
File* file(ExceptionState&);
FileWriterSync* createWriter(ExceptionState&);
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
FileEntrySync(DOMFileSystemBase*, const String& fullPath);
« no previous file with comments | « Source/modules/filesystem/FileEntry.h ('k') | Source/modules/filesystem/FileSystemCallbacks.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698