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

Unified Diff: Source/web/WebEmbeddedWorkerImpl.cpp

Issue 634893002: Replace OVERRIDE and FINAL with override and final in WebKit/public (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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/web/WebEmbeddedWorkerImpl.h ('k') | Source/web/WebFileChooserCompletionImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebEmbeddedWorkerImpl.cpp
diff --git a/Source/web/WebEmbeddedWorkerImpl.cpp b/Source/web/WebEmbeddedWorkerImpl.cpp
index cf07be64431459c4af3ad5da223feb96bad932c8..e32d1f1353235d11a79245e4439b31ecf56b5620 100644
--- a/Source/web/WebEmbeddedWorkerImpl.cpp
+++ b/Source/web/WebEmbeddedWorkerImpl.cpp
@@ -89,7 +89,7 @@ public:
*loadingContext, scriptURL, DenyCrossOriginRequests, this);
}
- virtual void notifyFinished() OVERRIDE
+ virtual void notifyFinished() override
{
m_callback();
}
@@ -119,12 +119,12 @@ public:
return adoptPtr(new LoaderProxy(embeddedWorker));
}
- virtual void postTaskToLoader(PassOwnPtr<ExecutionContextTask> task) OVERRIDE
+ virtual void postTaskToLoader(PassOwnPtr<ExecutionContextTask> task) override
{
toWebLocalFrameImpl(m_embeddedWorker.m_mainFrame)->frame()->document()->postTask(task);
}
- virtual bool postTaskToWorkerGlobalScope(PassOwnPtr<ExecutionContextTask> task) OVERRIDE
+ virtual bool postTaskToWorkerGlobalScope(PassOwnPtr<ExecutionContextTask> task) override
{
if (m_embeddedWorker.m_askedToTerminate || !m_embeddedWorker.m_workerThread)
return false;
« no previous file with comments | « Source/web/WebEmbeddedWorkerImpl.h ('k') | Source/web/WebFileChooserCompletionImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698