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); |