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

Unified Diff: Source/core/inspector/WorkerConsoleAgent.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/PageRuntimeAgent.h ('k') | Source/core/inspector/WorkerInspectorController.cpp » ('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 9305be1b4de72bf2c62edc4af073d38930285dfe..072d5ae01611a5fdd6923beb595d5446dca13aaf 100644
--- a/Source/core/inspector/WorkerConsoleAgent.h
+++ b/Source/core/inspector/WorkerConsoleAgent.h
@@ -45,17 +45,17 @@ public:
{
return adoptPtrWillBeNoop(new WorkerConsoleAgent(injectedScriptManager, workerGlobalScope));
}
- virtual ~WorkerConsoleAgent();
+ ~WorkerConsoleAgent() override;
DECLARE_VIRTUAL_TRACE();
- virtual void enable(ErrorString*) override;
- virtual void clearMessages(ErrorString*) override;
+ void enable(ErrorString*) override;
+ void clearMessages(ErrorString*) override;
protected:
- virtual ConsoleMessageStorage* messageStorage() override;
+ ConsoleMessageStorage* messageStorage() override;
- virtual void enableStackCapturingIfNeeded() override;
- virtual void disableStackCapturingIfNeeded() override;
+ void enableStackCapturingIfNeeded() override;
+ void disableStackCapturingIfNeeded() override;
private:
WorkerConsoleAgent(InjectedScriptManager*, WorkerGlobalScope*);
« no previous file with comments | « Source/core/inspector/PageRuntimeAgent.h ('k') | Source/core/inspector/WorkerInspectorController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698