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

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

Issue 1227783004: Fix virtual/override/final usage in Source/modules/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 5 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/DirectoryEntry.h ('k') | Source/modules/filesystem/DirectoryReader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/filesystem/DirectoryEntrySync.h
diff --git a/Source/modules/filesystem/DirectoryEntrySync.h b/Source/modules/filesystem/DirectoryEntrySync.h
index 96714d7c25034c520b5936621de8a9e1edc56d4a..73ad494a74b60cdc56403ad15caeb9090bc1d74b 100644
--- a/Source/modules/filesystem/DirectoryEntrySync.h
+++ b/Source/modules/filesystem/DirectoryEntrySync.h
@@ -48,7 +48,7 @@ public:
{
return new DirectoryEntrySync(fileSystem, fullPath);
}
- virtual bool isDirectory() const override { return true; }
+ bool isDirectory() const override { return true; }
DirectoryReaderSync* createReader();
FileEntrySync* getFile(const String& path, const FileSystemFlags&, ExceptionState&);
« no previous file with comments | « Source/modules/filesystem/DirectoryEntry.h ('k') | Source/modules/filesystem/DirectoryReader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698