Chromium Code Reviews| Index: Source/core/inspector/InspectorConsoleAgent.h |
| diff --git a/Source/core/inspector/InspectorConsoleAgent.h b/Source/core/inspector/InspectorConsoleAgent.h |
| index e0eb4b75bfb635ef034bda7f5eb4a6febfd1d82d..ef032cead67cd0d56acb079b350814e4c393f480 100644 |
| --- a/Source/core/inspector/InspectorConsoleAgent.h |
| +++ b/Source/core/inspector/InspectorConsoleAgent.h |
| @@ -46,7 +46,6 @@ class DocumentLoader; |
| class LocalFrame; |
| class InspectorFrontend; |
| class InjectedScriptManager; |
| -class InspectorTimelineAgent; |
| class ScriptProfile; |
| class ThreadableLoaderClient; |
| class XMLHttpRequest; |
| @@ -56,7 +55,7 @@ typedef String ErrorString; |
| class InspectorConsoleAgent : public InspectorBaseAgent<InspectorConsoleAgent>, public InspectorBackendDispatcher::ConsoleCommandHandler { |
| WTF_MAKE_NONCOPYABLE(InspectorConsoleAgent); |
| public: |
| - InspectorConsoleAgent(InspectorTimelineAgent*, InjectedScriptManager*); |
| + InspectorConsoleAgent(InjectedScriptManager*); |
|
yurys
2014/12/15 13:01:57
Should be marked as explicit now.
pfeldman
2014/12/15 13:28:37
Done.
|
| virtual ~InspectorConsoleAgent(); |
| virtual void trace(Visitor*) override; |
| @@ -72,10 +71,6 @@ public: |
| void addMessageToConsole(ConsoleMessage*); |
| void consoleMessagesCleared(); |
| - void setTracingBasedTimeline(ErrorString*, bool enabled); |
| - void consoleTimeline(ExecutionContext*, const String& title, ScriptState*); |
| - void consoleTimelineEnd(ExecutionContext*, const String& title, ScriptState*); |
| - |
| void didCommitLoad(LocalFrame*, DocumentLoader*); |
| void didFinishXHRLoading(XMLHttpRequest*, ThreadableLoaderClient*, unsigned long requestIdentifier, ScriptString, const AtomicString& method, const String& url); |
| @@ -96,7 +91,6 @@ protected: |
| virtual void enableStackCapturingIfNeeded() = 0; |
| virtual void disableStackCapturingIfNeeded() = 0; |
| - RawPtrWillBeMember<InspectorTimelineAgent> m_timelineAgent; |
| RawPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager; |
| InspectorFrontend::Console* m_frontend; |
| bool m_enabled; |