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

Unified Diff: Source/core/inspector/WorkerConsoleAgent.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/ScriptProfile.h ('k') | Source/core/inspector/WorkerDebuggerAgent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/WorkerConsoleAgent.h
diff --git a/Source/core/inspector/WorkerConsoleAgent.h b/Source/core/inspector/WorkerConsoleAgent.h
index cdf51971ed829af7b41f732623c425140625e618..437f9dc9818e66ad1094cebce8d675bd4473184d 100644
--- a/Source/core/inspector/WorkerConsoleAgent.h
+++ b/Source/core/inspector/WorkerConsoleAgent.h
@@ -38,7 +38,7 @@ namespace blink {
class WorkerGlobalScope;
-class WorkerConsoleAgent FINAL : public InspectorConsoleAgent {
+class WorkerConsoleAgent final : public InspectorConsoleAgent {
WTF_MAKE_NONCOPYABLE(WorkerConsoleAgent);
public:
static PassOwnPtrWillBeRawPtr<WorkerConsoleAgent> create(InspectorTimelineAgent* timelineAgent, InjectedScriptManager* injectedScriptManager, WorkerGlobalScope* workerGlobalScope)
@@ -47,14 +47,14 @@ public:
}
virtual ~WorkerConsoleAgent();
- virtual bool isWorkerAgent() OVERRIDE { return true; }
+ virtual bool isWorkerAgent() override { return true; }
protected:
- virtual ConsoleMessageStorage* messageStorage() OVERRIDE;
+ virtual ConsoleMessageStorage* messageStorage() override;
private:
WorkerConsoleAgent(InspectorTimelineAgent*, InjectedScriptManager*, WorkerGlobalScope*);
- virtual void addInspectedNode(ErrorString*, int nodeId) OVERRIDE;
+ virtual void addInspectedNode(ErrorString*, int nodeId) override;
WorkerGlobalScope* m_workerGlobalScope;
};
« no previous file with comments | « Source/core/inspector/ScriptProfile.h ('k') | Source/core/inspector/WorkerDebuggerAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698