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

Unified Diff: Source/modules/filesystem/InspectorFileSystemAgent.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
Index: Source/modules/filesystem/InspectorFileSystemAgent.cpp
diff --git a/Source/modules/filesystem/InspectorFileSystemAgent.cpp b/Source/modules/filesystem/InspectorFileSystemAgent.cpp
index 380d7a9f294d79d548fb3c4a14c7de23216783a8..5f3fe2ffe230bf2e09071b451ed7cc92fe65fdf5 100644
--- a/Source/modules/filesystem/InspectorFileSystemAgent.cpp
+++ b/Source/modules/filesystem/InspectorFileSystemAgent.cpp
@@ -91,7 +91,7 @@ public:
return new CallbackDispatcher(handler, handlingMethod);
}
- virtual void handleEvent(Argument argument) override
+ void handleEvent(Argument argument) override
{
(m_handler.get()->*m_handlingMethod)(argument);
}
@@ -382,19 +382,19 @@ public:
return adoptRef(new FileContentRequest(requestCallback, url, readAsText, start, end, charset));
}
- virtual ~FileContentRequest()
+ ~FileContentRequest() override
{
reportResult(FileError::ABORT_ERR);
}
void start(ExecutionContext*);
- virtual bool operator==(const EventListener& other) override
+ bool operator==(const EventListener& other) override
{
return this == &other;
}
- virtual void handleEvent(ExecutionContext*, Event* event) override
+ void handleEvent(ExecutionContext*, Event* event) override
{
if (event->type() == EventTypeNames::load)
didRead();
@@ -523,7 +523,7 @@ private:
{
}
- virtual void handleEvent() override
+ void handleEvent() override
{
m_handler->didDeleteEntry();
}
« no previous file with comments | « Source/modules/filesystem/InspectorFileSystemAgent.h ('k') | Source/modules/filesystem/SyncCallbackHelper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698