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

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

Issue 1232333002: Fix virtual/override/final usage in the rest of Source/core/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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 f8436816d006f5913c5f694779b8723ff9635ab2..52e61155a949a971919bec445c2b8e54a922466d 100644
--- a/Source/core/inspector/InspectorWorkerAgent.h
+++ b/Source/core/inspector/InspectorWorkerAgent.h
@@ -47,7 +47,7 @@ typedef String ErrorString;
class CORE_EXPORT InspectorWorkerAgent final : public InspectorBaseAgent<InspectorWorkerAgent, InspectorFrontend::Worker>, public InspectorBackendDispatcher::WorkerCommandHandler {
public:
static PassOwnPtrWillBeRawPtr<InspectorWorkerAgent> create(PageConsoleAgent*);
- virtual ~InspectorWorkerAgent();
+ ~InspectorWorkerAgent() override;
void init() override;
void disable(ErrorString*) override;
@@ -59,11 +59,11 @@ public:
void workerTerminated(WorkerInspectorProxy*);
// Called from InspectorBackendDispatcher
- virtual void enable(ErrorString*) override;
- virtual void connectToWorker(ErrorString*, const String& workerId) override;
- virtual void disconnectFromWorker(ErrorString*, const String& workerId) override;
- virtual void sendMessageToWorker(ErrorString*, const String& workerId, const String& message) override;
- virtual void setAutoconnectToWorkers(ErrorString*, bool value) override;
+ void enable(ErrorString*) override;
+ void connectToWorker(ErrorString*, const String& workerId) override;
+ void disconnectFromWorker(ErrorString*, const String& workerId) override;
+ void sendMessageToWorker(ErrorString*, const String& workerId, const String& message) override;
+ 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