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

Unified Diff: Source/core/inspector/WorkerDebuggerAgent.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/WorkerConsoleAgent.h ('k') | Source/core/inspector/WorkerDebuggerAgent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/WorkerDebuggerAgent.h
diff --git a/Source/core/inspector/WorkerDebuggerAgent.h b/Source/core/inspector/WorkerDebuggerAgent.h
index 4a82218210fd9d28b02aed545a600b728ec156e0..2642831fea6ce96dee5087fa26663f05ea03de44 100644
--- a/Source/core/inspector/WorkerDebuggerAgent.h
+++ b/Source/core/inspector/WorkerDebuggerAgent.h
@@ -40,13 +40,13 @@ class WorkerGlobalScope;
class WorkerThread;
class WorkerDebuggerAgent;
-class WorkerDebuggerAgent FINAL : public InspectorDebuggerAgent {
+class WorkerDebuggerAgent final : public InspectorDebuggerAgent {
WTF_MAKE_NONCOPYABLE(WorkerDebuggerAgent);
WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
public:
static PassOwnPtrWillBeRawPtr<WorkerDebuggerAgent> create(WorkerScriptDebugServer*, WorkerGlobalScope*, InjectedScriptManager*);
virtual ~WorkerDebuggerAgent();
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
void interruptAndDispatchInspectorCommands();
@@ -54,12 +54,12 @@ private:
WorkerDebuggerAgent(WorkerScriptDebugServer*, WorkerGlobalScope*, InjectedScriptManager*);
- virtual void startListeningScriptDebugServer() OVERRIDE;
- virtual void stopListeningScriptDebugServer() OVERRIDE;
- virtual WorkerScriptDebugServer& scriptDebugServer() OVERRIDE;
- virtual InjectedScript injectedScriptForEval(ErrorString*, const int* executionContextId) OVERRIDE;
- virtual void muteConsole() OVERRIDE;
- virtual void unmuteConsole() OVERRIDE;
+ virtual void startListeningScriptDebugServer() override;
+ virtual void stopListeningScriptDebugServer() override;
+ virtual WorkerScriptDebugServer& scriptDebugServer() override;
+ virtual InjectedScript injectedScriptForEval(ErrorString*, const int* executionContextId) override;
+ virtual void muteConsole() override;
+ virtual void unmuteConsole() override;
WorkerScriptDebugServer* m_scriptDebugServer;
RawPtrWillBeMember<WorkerGlobalScope> m_inspectedWorkerGlobalScope;
« no previous file with comments | « Source/core/inspector/WorkerConsoleAgent.h ('k') | Source/core/inspector/WorkerDebuggerAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698