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

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

Issue 10533051: TabContentsWrapper -> TabContents, part 10. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | « chrome/browser/debugger/devtools_sanity_browsertest.cc ('k') | chrome/browser/debugger/devtools_window.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/debugger/devtools_window.h
diff --git a/chrome/browser/debugger/devtools_window.h b/chrome/browser/debugger/devtools_window.h
index 8a4f8fffa61860cb6d9f3950c63bc8fdd6742931..ebd413de3e39afcd1bf0f35244e0f30ba4d60e03 100644
--- a/chrome/browser/debugger/devtools_window.h
+++ b/chrome/browser/debugger/devtools_window.h
@@ -28,7 +28,6 @@ class BrowserWindow;
class PrefService;
class Profile;
class TabContents;
-typedef TabContents TabContentsWrapper;
namespace base {
class Value;
@@ -48,8 +47,7 @@ class DevToolsWindow : private content::NotificationObserver,
public:
static const char kDevToolsApp[];
static void RegisterUserPrefs(PrefService* prefs);
- static TabContentsWrapper* GetDevToolsContents(
- content::WebContents* inspected_tab);
+ static TabContents* GetDevToolsContents(content::WebContents* inspected_tab);
static bool IsDevToolsWindow(content::RenderViewHost* window_rvh);
static DevToolsWindow* OpenDevToolsWindowForWorker(
@@ -73,7 +71,7 @@ class DevToolsWindow : private content::NotificationObserver,
void Show(DevToolsToggleAction action);
- TabContentsWrapper* tab_contents() { return tab_contents_; }
+ TabContents* tab_contents() { return tab_contents_; }
Browser* browser() { return browser_; } // For tests.
bool is_docked() { return docked_; }
content::DevToolsClientHost* devtools_client_host() {
@@ -84,7 +82,7 @@ class DevToolsWindow : private content::NotificationObserver,
static DevToolsWindow* Create(Profile* profile,
content::RenderViewHost* inspected_rvh,
bool docked, bool shared_worker_frontend);
- DevToolsWindow(TabContentsWrapper* tab_contents, Profile* profile,
+ DevToolsWindow(TabContents* tab_contents, Profile* profile,
content::RenderViewHost* inspected_rvh, bool docked);
void CreateDevToolsBrowser();
@@ -154,8 +152,8 @@ class DevToolsWindow : private content::NotificationObserver,
void RequestSetDocked(bool docked);
Profile* profile_;
- TabContentsWrapper* inspected_tab_;
- TabContentsWrapper* tab_contents_;
+ TabContents* inspected_tab_;
+ TabContents* tab_contents_;
Browser* browser_;
bool docked_;
bool is_loaded_;
« no previous file with comments | « chrome/browser/debugger/devtools_sanity_browsertest.cc ('k') | chrome/browser/debugger/devtools_window.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698