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

Unified Diff: Source/core/inspector/PageRuntimeAgent.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/PageConsoleAgent.h ('k') | Source/core/inspector/WorkerConsoleAgent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/PageRuntimeAgent.h
diff --git a/Source/core/inspector/PageRuntimeAgent.h b/Source/core/inspector/PageRuntimeAgent.h
index 69799baf092cbde1b450faff4db14829735fe2c3..7d6ef7eea62bf16cbd3a3ba13ff5d9ed6904b3dd 100644
--- a/Source/core/inspector/PageRuntimeAgent.h
+++ b/Source/core/inspector/PageRuntimeAgent.h
@@ -47,7 +47,7 @@ public:
{
return adoptPtrWillBeNoop(new PageRuntimeAgent(injectedScriptManager, client, debugger, pageAgent));
}
- virtual ~PageRuntimeAgent();
+ ~PageRuntimeAgent() override;
DECLARE_VIRTUAL_TRACE();
void init() override;
void enable(ErrorString*) override;
@@ -60,9 +60,9 @@ public:
private:
PageRuntimeAgent(InjectedScriptManager*, Client*, V8Debugger*, InspectorPageAgent*);
- virtual InjectedScript injectedScriptForEval(ErrorString*, const int* executionContextId) override;
- virtual void muteConsole() override;
- virtual void unmuteConsole() override;
+ InjectedScript injectedScriptForEval(ErrorString*, const int* executionContextId) override;
+ void muteConsole() override;
+ void unmuteConsole() override;
void reportExecutionContextCreation();
void reportExecutionContext(ScriptState*, bool isPageContext, const String& origin, const String& frameId);
« no previous file with comments | « Source/core/inspector/PageConsoleAgent.h ('k') | Source/core/inspector/WorkerConsoleAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698