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); |