Index: third_party/WebKit/Source/web/WebDevToolsAgentImpl.h |
diff --git a/third_party/WebKit/Source/web/WebDevToolsAgentImpl.h b/third_party/WebKit/Source/web/WebDevToolsAgentImpl.h |
index b761b55b337e05f59a30ea815be1f884b8b9f013..4f97374acb9457588c7c642919ecbb730cc29aa1 100644 |
--- a/third_party/WebKit/Source/web/WebDevToolsAgentImpl.h |
+++ b/third_party/WebKit/Source/web/WebDevToolsAgentImpl.h |
@@ -33,7 +33,6 @@ |
#include "core/inspector/InspectorFrontendChannel.h" |
#include "core/inspector/InspectorRuntimeAgent.h" |
-#include "core/inspector/InspectorStateClient.h" |
#include "core/inspector/InspectorTracingAgent.h" |
#include "platform/heap/Handle.h" |
#include "public/platform/WebSize.h" |
@@ -71,7 +70,6 @@ class WebViewImpl; |
class WebDevToolsAgentImpl final |
: public NoBaseWillBeGarbageCollectedFinalized<WebDevToolsAgentImpl> |
, public WebDevToolsAgent |
- , public InspectorStateClient |
, public InspectorEmulationAgent::Client |
, public InspectorTracingAgent::Client |
, public InspectorRuntimeAgent::Client |
@@ -112,9 +110,6 @@ public: |
private: |
WebDevToolsAgentImpl(WebLocalFrameImpl*, WebDevToolsAgentClient*, PassOwnPtrWillBeRawPtr<InspectorOverlay>); |
- // InspectorStateClient implementation. |
- void updateInspectorStateCookie(const WTF::String&) override; |
- |
// InspectorTracingAgent::Client implementation. |
void enableTracing(const WTF::String& categoryFilter) override; |
void disableTracing() override; |
@@ -146,7 +141,6 @@ private: |
RefPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents; |
OwnPtr<InjectedScriptManager> m_injectedScriptManager; |
OwnPtrWillBeMember<InspectorResourceContentLoader> m_resourceContentLoader; |
- OwnPtr<InspectorCompositeState> m_state; |
OwnPtrWillBeMember<InspectorOverlay> m_overlay; |
OwnPtrWillBeMember<InspectedFrames> m_inspectedFrames; |
@@ -168,6 +162,7 @@ private: |
NotificationQueue m_notificationQueue; |
int m_sessionId; |
String m_stateCookie; |
+ bool m_stateMuted; |
friend class DebuggerTask; |
}; |