summaryrefslogtreecommitdiffstats
path: root/chrome/browser/renderer_host/render_view_host.h
diff options
context:
space:
mode:
authordarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-20 17:00:42 +0000
committerdarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-20 17:00:42 +0000
commitaa3c4f8994228ab5b134b42c50e152f69d036d90 (patch)
tree31885515d19e6cc69041a515e77949979b46d9f9 /chrome/browser/renderer_host/render_view_host.h
parentb3e3a7c25563c04221141be853d91af264c8c440 (diff)
downloadchromium_src-aa3c4f8994228ab5b134b42c50e152f69d036d90.zip
chromium_src-aa3c4f8994228ab5b134b42c50e152f69d036d90.tar.gz
chromium_src-aa3c4f8994228ab5b134b42c50e152f69d036d90.tar.bz2
Revert r10090, which was committed without proper review.
TBR=brettw Review URL: http://codereview.chromium.org/20539 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10101 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/renderer_host/render_view_host.h')
-rw-r--r--chrome/browser/renderer_host/render_view_host.h14
1 files changed, 1 insertions, 13 deletions
diff --git a/chrome/browser/renderer_host/render_view_host.h b/chrome/browser/renderer_host/render_view_host.h
index c6bab37..15d0c6f 100644
--- a/chrome/browser/renderer_host/render_view_host.h
+++ b/chrome/browser/renderer_host/render_view_host.h
@@ -26,7 +26,6 @@ class NavigationEntry;
class RenderViewHostDelegate;
class SiteInstance;
class SkBitmap;
-class ToolsWindow;
class ViewMsg_Navigate;
struct ContextMenuParams;
struct ViewHostMsg_DidPrintPage_Params;
@@ -321,11 +320,6 @@ class RenderViewHost : public RenderWidgetHost {
// Must be called before CreateRenderView().
void AllowDOMUIBindings();
- // Tell the render view to connect as a tools client to the specified
- // renderer. Must be called when RenderView is created but before any
- // navigation.
- void SetupToolsClient(int inspected_process_id, int inspected_view_id);
-
// Sets a property with the given name and value on the DOM UI binding object.
// Must call AllowDOMUIBindings() on this renderer first.
void SetDOMUIProperty(const std::string& name, const std::string& value);
@@ -512,8 +506,6 @@ class RenderViewHost : public RenderWidgetHost {
const std::wstring& source_id);
void OnDebuggerOutput(const std::wstring& output);
void DidDebugAttach();
- void OnToolsAgentMsg(int tools_message_type, const std::wstring& body);
- void OnToolsClientMsg(int tools_message_type, const std::wstring& body);
void OnUserMetricsRecordAction(const std::wstring& action);
void OnMissingPluginStatus(int status);
void OnMessageReceived(IPC::Message* msg) { }
@@ -569,7 +561,7 @@ class RenderViewHost : public RenderWidgetHost {
// information.
bool waiting_for_drag_context_response_;
- // If the debugger attached to us or not.
+ // is the debugger attached to us or not
bool debugger_attached_;
// True if we've been told to set up the the Javascript bindings for
@@ -618,10 +610,6 @@ class RenderViewHost : public RenderWidgetHost {
bool are_javascript_messages_suppressed_;
- int inspected_process_id_;
-
- int inspected_view_id_;
-
DISALLOW_EVIL_CONSTRUCTORS(RenderViewHost);
};