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

Unified Diff: third_party/WebKit/Source/web/WebDevToolsAgentImpl.h

Issue 1621923002: [DevTools] Remove InspectorState. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: to JSONObject Created 4 years, 11 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
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;
};

Powered by Google App Engine
This is Rietveld 408576698