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

Side by Side Diff: content/browser/devtools/render_view_devtools_agent_host.h

Issue 467653002: Revert of [DevTools] Make DevTools clients talk directly to DevToolsAgentHost instead of using DevToolsManage… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_DEVTOOLS_RENDER_VIEW_DEVTOOLS_AGENT_HOST_H_ 5 #ifndef CONTENT_BROWSER_DEVTOOLS_RENDER_VIEW_DEVTOOLS_AGENT_HOST_H_
6 #define CONTENT_BROWSER_DEVTOOLS_RENDER_VIEW_DEVTOOLS_AGENT_HOST_H_ 6 #define CONTENT_BROWSER_DEVTOOLS_RENDER_VIEW_DEVTOOLS_AGENT_HOST_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 // DevTooolsAgentHost overrides. 47 // DevTooolsAgentHost overrides.
48 virtual void DisconnectWebContents() OVERRIDE; 48 virtual void DisconnectWebContents() OVERRIDE;
49 virtual void ConnectWebContents(WebContents* web_contents) OVERRIDE; 49 virtual void ConnectWebContents(WebContents* web_contents) OVERRIDE;
50 virtual WebContents* GetWebContents() OVERRIDE; 50 virtual WebContents* GetWebContents() OVERRIDE;
51 51
52 private: 52 private:
53 friend class DevToolsAgentHost; 53 friend class DevToolsAgentHost;
54 virtual ~RenderViewDevToolsAgentHost(); 54 virtual ~RenderViewDevToolsAgentHost();
55 55
56 // IPCDevToolsAgentHost overrides. 56 // IPCDevToolsAgentHost overrides.
57 virtual void DispatchProtocolMessage(const std::string& message) OVERRIDE; 57 virtual void DispatchOnInspectorBackend(const std::string& message) OVERRIDE;
58 virtual void SendMessageToAgent(IPC::Message* msg) OVERRIDE; 58 virtual void SendMessageToAgent(IPC::Message* msg) OVERRIDE;
59 virtual void OnClientAttached() OVERRIDE; 59 virtual void OnClientAttached() OVERRIDE;
60 virtual void OnClientDetached() OVERRIDE; 60 virtual void OnClientDetached() OVERRIDE;
61 61
62 // WebContentsObserver overrides. 62 // WebContentsObserver overrides.
63 virtual void AboutToNavigateRenderView(RenderViewHost* dest_rvh) OVERRIDE; 63 virtual void AboutToNavigateRenderView(RenderViewHost* dest_rvh) OVERRIDE;
64 virtual void RenderViewHostChanged(RenderViewHost* old_host, 64 virtual void RenderViewHostChanged(RenderViewHost* old_host,
65 RenderViewHost* new_host) OVERRIDE; 65 RenderViewHost* new_host) OVERRIDE;
66 virtual void RenderViewDeleted(RenderViewHost* rvh) OVERRIDE; 66 virtual void RenderViewDeleted(RenderViewHost* rvh) OVERRIDE;
67 virtual void RenderProcessGone(base::TerminationStatus status) OVERRIDE; 67 virtual void RenderProcessGone(base::TerminationStatus status) OVERRIDE;
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 std::string state_; 106 std::string state_;
107 NotificationRegistrar registrar_; 107 NotificationRegistrar registrar_;
108 bool reattaching_; 108 bool reattaching_;
109 109
110 DISALLOW_COPY_AND_ASSIGN(RenderViewDevToolsAgentHost); 110 DISALLOW_COPY_AND_ASSIGN(RenderViewDevToolsAgentHost);
111 }; 111 };
112 112
113 } // namespace content 113 } // namespace content
114 114
115 #endif // CONTENT_BROWSER_DEVTOOLS_RENDER_VIEW_DEVTOOLS_AGENT_HOST_H_ 115 #endif // CONTENT_BROWSER_DEVTOOLS_RENDER_VIEW_DEVTOOLS_AGENT_HOST_H_
OLDNEW
« no previous file with comments | « content/browser/devtools/ipc_devtools_agent_host.cc ('k') | content/browser/devtools/render_view_devtools_agent_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698