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

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

Issue 4694008: Make pink's TabContentsWrapper change compile on Windows.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month 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
Index: chrome/browser/debugger/devtools_window.h
===================================================================
--- chrome/browser/debugger/devtools_window.h (revision 66453)
+++ chrome/browser/debugger/devtools_window.h (working copy)
@@ -24,7 +24,7 @@
class BrowserWindow;
class Profile;
class RenderViewHost;
-class TabContents;
+class TabContentsWrapper;
class Value;
class DevToolsWindow
@@ -48,7 +48,7 @@
void SetDocked(bool docked);
RenderViewHost* GetRenderViewHost();
- TabContents* tab_contents() { return tab_contents_; }
+ TabContentsWrapper* tab_contents() { return tab_contents_; }
Browser* browser() { return browser_; } // For tests.
bool is_docked() { return docked_; }
@@ -98,7 +98,7 @@
Profile* profile_;
TabContents* inspected_tab_;
- TabContents* tab_contents_;
+ TabContentsWrapper* tab_contents_;
Browser* browser_;
bool docked_;
bool is_loaded_;

Powered by Google App Engine
This is Rietveld 408576698