| Index: Source/core/inspector/InspectorConsoleAgent.h
|
| diff --git a/Source/core/inspector/InspectorConsoleAgent.h b/Source/core/inspector/InspectorConsoleAgent.h
|
| index 36258092df0fcda994e0b462371ad85ab64a5e13..5006a1ec0052588e59d6366ae695f54fdef8f82f 100644
|
| --- a/Source/core/inspector/InspectorConsoleAgent.h
|
| +++ b/Source/core/inspector/InspectorConsoleAgent.h
|
| @@ -44,7 +44,7 @@ class CORE_EXPORT InspectorConsoleAgent : public InspectorBaseAgent<InspectorCon
|
| WTF_MAKE_NONCOPYABLE(InspectorConsoleAgent);
|
| public:
|
| explicit InspectorConsoleAgent(InjectedScriptManager*);
|
| - virtual ~InspectorConsoleAgent();
|
| + ~InspectorConsoleAgent() override;
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| void setDebuggerAgent(InspectorDebuggerAgent* debuggerAgent) { m_debuggerAgent = debuggerAgent; }
|
| @@ -53,7 +53,7 @@ public:
|
| bool enabled() { return m_enabled; }
|
|
|
| void disable(ErrorString*) override;
|
| - void restore() override final;
|
| + void restore() final;
|
|
|
| void addMessageToConsole(ConsoleMessage*);
|
| void consoleMessagesCleared();
|
|
|