summaryrefslogtreecommitdiffstats
path: root/content/browser/debugger
diff options
context:
space:
mode:
Diffstat (limited to 'content/browser/debugger')
-rw-r--r--content/browser/debugger/devtools_frontend_host.h8
-rw-r--r--content/browser/debugger/devtools_manager_impl.h1
-rw-r--r--content/browser/debugger/render_view_devtools_agent_host.h4
3 files changed, 5 insertions, 8 deletions
diff --git a/content/browser/debugger/devtools_frontend_host.h b/content/browser/debugger/devtools_frontend_host.h
index 4b3b18a..d60b093 100644
--- a/content/browser/debugger/devtools_frontend_host.h
+++ b/content/browser/debugger/devtools_frontend_host.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -12,7 +12,7 @@
#include "content/public/browser/devtools_client_host.h"
#include "content/public/browser/render_view_host_observer.h"
-class TabContents;
+class WebContentsImpl;
namespace content {
@@ -25,7 +25,7 @@ class DevToolsFrontendHostDelegate;
class DevToolsFrontendHost : public DevToolsClientHost,
public RenderViewHostObserver {
public:
- DevToolsFrontendHost(TabContents* tab_contents,
+ DevToolsFrontendHost(WebContentsImpl* web_contents,
DevToolsFrontendHostDelegate* delegate);
private:
@@ -52,7 +52,7 @@ class DevToolsFrontendHost : public DevToolsClientHost,
const std::string& content,
bool save_as);
- TabContents* tab_contents_;
+ WebContentsImpl* tab_contents_;
DevToolsFrontendHostDelegate* delegate_;
DISALLOW_COPY_AND_ASSIGN(DevToolsFrontendHost);
};
diff --git a/content/browser/debugger/devtools_manager_impl.h b/content/browser/debugger/devtools_manager_impl.h
index 3efab10..b78d352 100644
--- a/content/browser/debugger/devtools_manager_impl.h
+++ b/content/browser/debugger/devtools_manager_impl.h
@@ -17,7 +17,6 @@
#include "content/public/browser/devtools_manager.h"
class GURL;
-class TabContents;
namespace IPC {
class Message;
diff --git a/content/browser/debugger/render_view_devtools_agent_host.h b/content/browser/debugger/render_view_devtools_agent_host.h
index b05e7df..912f787 100644
--- a/content/browser/debugger/render_view_devtools_agent_host.h
+++ b/content/browser/debugger/render_view_devtools_agent_host.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -13,8 +13,6 @@
#include "content/common/content_export.h"
#include "content/public/browser/render_view_host_observer.h"
-class TabContents;
-
namespace content {
class RenderViewHost;