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

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

Issue 1880273002: [DevTools] Create last agents on attach, modify InspectorDatabaseAgent to support it. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: two databases in the test Created 4 years, 8 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 406919dc4fcd87e8d9bf2bbacd794dd06be2e8d2..0ff75656bf1ce719cdb420269482651af493f618 100644
--- a/third_party/WebKit/Source/web/WebDevToolsAgentImpl.h
+++ b/third_party/WebKit/Source/web/WebDevToolsAgentImpl.h
@@ -110,7 +110,7 @@ public:
WebString evaluateInWebInspectorOverlay(const WebString& script) override;
private:
- WebDevToolsAgentImpl(WebLocalFrameImpl*, WebDevToolsAgentClient*, InspectorOverlay*);
+ WebDevToolsAgentImpl(WebLocalFrameImpl*, WebDevToolsAgentClient*, InspectorOverlay*, bool includeViewAgents);
// InspectorTracingAgent::Client implementation.
void enableTracing(const WTF::String& categoryFilter) override;
@@ -164,6 +164,7 @@ private:
OwnPtr<protocol::Frontend> m_inspectorFrontend;
InspectorAgentRegistry m_agents;
bool m_deferredAgentsInitialized;
+ bool m_includeViewAgents;
typedef Vector<std::pair<int, OwnPtr<protocol::Value>>> NotificationQueue;
NotificationQueue m_notificationQueue;

Powered by Google App Engine
This is Rietveld 408576698