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

Unified Diff: Source/modules/filesystem/DirectoryReaderSync.cpp

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/DirectoryReaderSync.h ('k') | Source/modules/filesystem/FileEntry.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/filesystem/DirectoryReaderSync.cpp
diff --git a/Source/modules/filesystem/DirectoryReaderSync.cpp b/Source/modules/filesystem/DirectoryReaderSync.cpp
index ae86fc25d4860b4d886ff3e284e10730de599e98..6eb83525c6e0049c3f9826ac01603bfb212424c2 100644
--- a/Source/modules/filesystem/DirectoryReaderSync.cpp
+++ b/Source/modules/filesystem/DirectoryReaderSync.cpp
@@ -49,7 +49,7 @@ public:
{
}
- virtual void handleEvent(const EntryHeapVector& entries) override
+ void handleEvent(const EntryHeapVector& entries) override
{
EntrySyncHeapVector syncEntries;
syncEntries.reserveInitialCapacity(entries.size());
@@ -75,7 +75,7 @@ public:
{
}
- virtual void handleEvent(FileError* error) override
+ void handleEvent(FileError* error) override
{
m_reader->setError(error->code());
}
« no previous file with comments | « Source/modules/filesystem/DirectoryReaderSync.h ('k') | Source/modules/filesystem/FileEntry.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698