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

Unified Diff: Source/core/inspector/InspectorWorkerAgent.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/InspectorTracingAgent.h ('k') | Source/core/inspector/InspectorWorkerAgent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorWorkerAgent.h
diff --git a/Source/core/inspector/InspectorWorkerAgent.h b/Source/core/inspector/InspectorWorkerAgent.h
index d3b158850b8158e89f2ce106420c8132e91c01ca..6f1848975c2ea282bb999d3ec5665679025e4c68 100644
--- a/Source/core/inspector/InspectorWorkerAgent.h
+++ b/Source/core/inspector/InspectorWorkerAgent.h
@@ -44,15 +44,15 @@ class WorkerInspectorProxy;
typedef String ErrorString;
-class InspectorWorkerAgent FINAL : public InspectorBaseAgent<InspectorWorkerAgent>, public InspectorBackendDispatcher::WorkerCommandHandler {
+class InspectorWorkerAgent final : public InspectorBaseAgent<InspectorWorkerAgent>, public InspectorBackendDispatcher::WorkerCommandHandler {
public:
static PassOwnPtrWillBeRawPtr<InspectorWorkerAgent> create();
virtual ~InspectorWorkerAgent();
- virtual void init() OVERRIDE;
- virtual void setFrontend(InspectorFrontend*) OVERRIDE;
- virtual void restore() OVERRIDE;
- virtual void clearFrontend() OVERRIDE;
+ virtual void init() override;
+ virtual void setFrontend(InspectorFrontend*) override;
+ virtual void restore() override;
+ virtual void clearFrontend() override;
// Called from InspectorInstrumentation
bool shouldPauseDedicatedWorkerOnStart();
@@ -60,13 +60,13 @@ public:
void workerTerminated(WorkerInspectorProxy*);
// Called from InspectorBackendDispatcher
- virtual void enable(ErrorString*) OVERRIDE;
- virtual void disable(ErrorString*) OVERRIDE;
- virtual void canInspectWorkers(ErrorString*, bool*) OVERRIDE;
- virtual void connectToWorker(ErrorString*, int workerId) OVERRIDE;
- virtual void disconnectFromWorker(ErrorString*, int workerId) OVERRIDE;
- virtual void sendMessageToWorker(ErrorString*, int workerId, const RefPtr<JSONObject>& message) OVERRIDE;
- virtual void setAutoconnectToWorkers(ErrorString*, bool value) OVERRIDE;
+ virtual void enable(ErrorString*) override;
+ virtual void disable(ErrorString*) override;
+ virtual void canInspectWorkers(ErrorString*, bool*) override;
+ virtual void connectToWorker(ErrorString*, int workerId) override;
+ virtual void disconnectFromWorker(ErrorString*, int workerId) override;
+ virtual void sendMessageToWorker(ErrorString*, int workerId, const RefPtr<JSONObject>& message) override;
+ virtual void setAutoconnectToWorkers(ErrorString*, bool value) override;
void setTracingSessionId(const String&);
« no previous file with comments | « Source/core/inspector/InspectorTracingAgent.h ('k') | Source/core/inspector/InspectorWorkerAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698