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

Unified Diff: Source/modules/filesystem/DOMFileSystem.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/fetch/Body.h ('k') | Source/modules/filesystem/DOMFileSystemSync.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/filesystem/DOMFileSystem.h
diff --git a/Source/modules/filesystem/DOMFileSystem.h b/Source/modules/filesystem/DOMFileSystem.h
index 798737cc11eb27b5b7bc05a4f6e281955d776566..92a878ad0d8e0ab21f1e71bf15e356f061b1f865 100644
--- a/Source/modules/filesystem/DOMFileSystem.h
+++ b/Source/modules/filesystem/DOMFileSystem.h
@@ -60,12 +60,12 @@ public:
DirectoryEntry* root() const;
// DOMFileSystemBase overrides.
- virtual void addPendingCallbacks() override;
- virtual void removePendingCallbacks() override;
- virtual void reportError(ErrorCallback*, FileError*) override;
+ void addPendingCallbacks() override;
+ void removePendingCallbacks() override;
+ void reportError(ErrorCallback*, FileError*) override;
// ActiveDOMObject overrides.
- virtual bool hasPendingActivity() const override;
+ bool hasPendingActivity() const override;
void createWriter(const FileEntry*, FileWriterCallback*, ErrorCallback*);
void createFile(const FileEntry*, FileCallback*, ErrorCallback*);
@@ -106,7 +106,7 @@ private:
class DispatchCallbackTaskBase : public ExecutionContextTask {
public:
- virtual String taskNameForInstrumentation() const override
+ String taskNameForInstrumentation() const override
{
return "FileSystem";
}
@@ -121,7 +121,7 @@ private:
{
}
- virtual void performTask(ExecutionContext*) override
+ void performTask(ExecutionContext*) override
{
m_callback->handleEvent(m_callbackArg.get());
}
@@ -140,7 +140,7 @@ private:
{
}
- virtual void performTask(ExecutionContext*) override
+ void performTask(ExecutionContext*) override
{
m_callback->handleEvent(m_callbackArg);
}
@@ -158,7 +158,7 @@ private:
{
}
- virtual void performTask(ExecutionContext*) override
+ void performTask(ExecutionContext*) override
{
m_callback->handleEvent();
}
« no previous file with comments | « Source/modules/fetch/Body.h ('k') | Source/modules/filesystem/DOMFileSystemSync.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698