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

Unified Diff: Source/core/inspector/WorkerRuntimeAgent.h

Issue 638553002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed Nits 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/core/inspector/WorkerInspectorController.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/WorkerRuntimeAgent.h
diff --git a/Source/core/inspector/WorkerRuntimeAgent.h b/Source/core/inspector/WorkerRuntimeAgent.h
index 14eca96d9be0d2d0637de96dc7db6938f3d3d2a1..787411237aec0f16b87a2c2ab938f5611abcd64f 100644
--- a/Source/core/inspector/WorkerRuntimeAgent.h
+++ b/Source/core/inspector/WorkerRuntimeAgent.h
@@ -38,29 +38,29 @@ namespace blink {
class WorkerGlobalScope;
-class WorkerRuntimeAgent FINAL : public InspectorRuntimeAgent {
+class WorkerRuntimeAgent final : public InspectorRuntimeAgent {
public:
static PassOwnPtrWillBeRawPtr<WorkerRuntimeAgent> create(InjectedScriptManager* injectedScriptManager, ScriptDebugServer* scriptDebugServer, WorkerGlobalScope* context)
{
return adoptPtrWillBeNoop(new WorkerRuntimeAgent(injectedScriptManager, scriptDebugServer, context));
}
virtual ~WorkerRuntimeAgent();
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
- virtual void init() OVERRIDE;
- virtual void enable(ErrorString*) OVERRIDE;
+ virtual void init() override;
+ virtual void enable(ErrorString*) override;
// Protocol commands.
- virtual void run(ErrorString*) OVERRIDE;
- virtual void isRunRequired(ErrorString*, bool* out_result) OVERRIDE;
+ virtual void run(ErrorString*) override;
+ virtual void isRunRequired(ErrorString*, bool* out_result) override;
void willEvaluateWorkerScript(WorkerGlobalScope*, int workerThreadStartMode);
private:
WorkerRuntimeAgent(InjectedScriptManager*, ScriptDebugServer*, WorkerGlobalScope*);
- virtual InjectedScript injectedScriptForEval(ErrorString*, const int* executionContextId) OVERRIDE;
- virtual void muteConsole() OVERRIDE;
- virtual void unmuteConsole() OVERRIDE;
+ virtual InjectedScript injectedScriptForEval(ErrorString*, const int* executionContextId) override;
+ virtual void muteConsole() override;
+ virtual void unmuteConsole() override;
RawPtrWillBeMember<WorkerGlobalScope> m_workerGlobalScope;
bool m_paused;
};
« no previous file with comments | « Source/core/inspector/WorkerInspectorController.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698