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

Unified Diff: chrome/browser/debugger/devtools_view.h

Issue 50009: Allow different types of devtools client (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 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 | « chrome/browser/debugger/devtools_manager_unittest.cc ('k') | chrome/browser/debugger/devtools_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/debugger/devtools_view.h
===================================================================
--- chrome/browser/debugger/devtools_view.h (revision 12273)
+++ chrome/browser/debugger/devtools_view.h (working copy)
@@ -12,18 +12,24 @@
#include "chrome/browser/tab_contents/tab_contents_delegate.h"
#include "chrome/views/view.h"
-class DevToolsInstanceDescriptor;
+namespace IPC {
+class Message;
+}
+
+class RenderViewHost;
class TabContentsContainerView;
class WebContents;
class DevToolsView : public views::View,
public TabContentsDelegate {
public:
- explicit DevToolsView(DevToolsInstanceDescriptor* descriptor);
+ explicit DevToolsView();
virtual ~DevToolsView();
// Destroy content views when the window is closing.
void OnWindowClosing();
+ void SendMessageToClient(const IPC::Message& message);
+ bool HasRenderViewHost(const RenderViewHost& rvh) const;
private:
// Overridden from TabContentsDelegate:
@@ -63,7 +69,6 @@
void Init();
- DevToolsInstanceDescriptor* descriptor_;
WebContents* web_contents_;
TabContentsContainerView* web_container_;
« no previous file with comments | « chrome/browser/debugger/devtools_manager_unittest.cc ('k') | chrome/browser/debugger/devtools_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698