Index: Source/modules/filesystem/DirectoryEntry.h |
diff --git a/Source/modules/filesystem/DirectoryEntry.h b/Source/modules/filesystem/DirectoryEntry.h |
index 68b16ce9d6404729cbddcf1aa3733766b1207287..169866ab874dbe0a8011fc53599d698e7d30ffcb 100644 |
--- a/Source/modules/filesystem/DirectoryEntry.h |
+++ b/Source/modules/filesystem/DirectoryEntry.h |
@@ -45,13 +45,13 @@ class EntryCallback; |
class ErrorCallback; |
class VoidCallback; |
-class DirectoryEntry : public Entry { |
+class DirectoryEntry FINAL : public Entry { |
public: |
static PassRefPtr<DirectoryEntry> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) |
{ |
return adoptRef(new DirectoryEntry(fileSystem, fullPath)); |
} |
- virtual bool isDirectory() const { return true; } |
+ virtual bool isDirectory() const OVERRIDE { return true; } |
PassRefPtr<DirectoryReader> createReader(); |
void getFile(const String& path, const Dictionary&, PassOwnPtr<EntryCallback> = nullptr, PassOwnPtr<ErrorCallback> = nullptr); |