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

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

Issue 135653002: Update modules classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove change to web/ Created 6 years, 11 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/DirectoryEntrySync.h ('k') | Source/modules/filesystem/FileEntrySync.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/filesystem/FileEntry.h
diff --git a/Source/modules/filesystem/FileEntry.h b/Source/modules/filesystem/FileEntry.h
index 1bb3d488e69858736677a8314fe3291365da25f9..acfcda3c9d530309d924e681fb7e6105c43cfea6 100644
--- a/Source/modules/filesystem/FileEntry.h
+++ b/Source/modules/filesystem/FileEntry.h
@@ -39,7 +39,7 @@ class DOMFileSystemBase;
class FileCallback;
class FileWriterCallback;
-class FileEntry : public Entry {
+class FileEntry FINAL : public Entry {
public:
static PassRefPtr<FileEntry> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
{
@@ -49,7 +49,7 @@ public:
void createWriter(PassOwnPtr<FileWriterCallback>, PassOwnPtr<ErrorCallback> = nullptr);
void file(PassOwnPtr<FileCallback>, PassOwnPtr<ErrorCallback> = nullptr);
- virtual bool isFile() const { return true; }
+ virtual bool isFile() const OVERRIDE { return true; }
private:
FileEntry(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
« no previous file with comments | « Source/modules/filesystem/DirectoryEntrySync.h ('k') | Source/modules/filesystem/FileEntrySync.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698