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

Unified Diff: public/web/WebDevToolsAgent.h

Issue 338993006: DevTools: pass agent host id to the renderer (Blink). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Same w/ reattach. Created 6 years, 6 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
« no previous file with comments | « Source/web/WebDevToolsAgentImpl.cpp ('k') | public/web/WebDevToolsAgentClient.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebDevToolsAgent.h
diff --git a/public/web/WebDevToolsAgent.h b/public/web/WebDevToolsAgent.h
index ec9d7308fbb5dd1010991ab7e289393373ef5ee2..2adad796c955b3b2b50c702e699f8a4a6b5f83b1 100644
--- a/public/web/WebDevToolsAgent.h
+++ b/public/web/WebDevToolsAgent.h
@@ -50,8 +50,12 @@ class WebDevToolsAgent {
public:
virtual ~WebDevToolsAgent() {}
+ // FIXME: remove once migrated to the one with host_id.
virtual void attach() = 0;
virtual void reattach(const WebString& savedState) = 0;
+
+ virtual void attach(const WebString& hostId) = 0;
+ virtual void reattach(const WebString& hostId, const WebString& savedState) = 0;
virtual void detach() = 0;
virtual void didNavigate() = 0;
« no previous file with comments | « Source/web/WebDevToolsAgentImpl.cpp ('k') | public/web/WebDevToolsAgentClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698