| Index: Source/modules/filesystem/DirectoryEntrySync.h
|
| diff --git a/Source/modules/filesystem/DirectoryEntrySync.h b/Source/modules/filesystem/DirectoryEntrySync.h
|
| index eb618cc1a32e8ea89336355d99f430982a8aeab0..fa7531d244f1b9ee479c2673b7a75e2de94ac3c7 100644
|
| --- a/Source/modules/filesystem/DirectoryEntrySync.h
|
| +++ b/Source/modules/filesystem/DirectoryEntrySync.h
|
| @@ -41,21 +41,21 @@ class ExceptionState;
|
| class FileEntrySync;
|
| class FileSystemFlags;
|
|
|
| -class DirectoryEntrySync FINAL : public EntrySync {
|
| +class DirectoryEntrySync final : public EntrySync {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| static DirectoryEntrySync* create(DOMFileSystemBase* fileSystem, const String& fullPath)
|
| {
|
| return new DirectoryEntrySync(fileSystem, fullPath);
|
| }
|
| - virtual bool isDirectory() const OVERRIDE { return true; }
|
| + virtual bool isDirectory() const override { return true; }
|
|
|
| DirectoryReaderSync* createReader();
|
| FileEntrySync* getFile(const String& path, const FileSystemFlags&, ExceptionState&);
|
| DirectoryEntrySync* getDirectory(const String& path, const FileSystemFlags&, ExceptionState&);
|
| void removeRecursively(ExceptionState&);
|
|
|
| - virtual void trace(Visitor*) OVERRIDE;
|
| + virtual void trace(Visitor*) override;
|
|
|
| private:
|
| DirectoryEntrySync(DOMFileSystemBase*, const String& fullPath);
|
|
|