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

Unified Diff: chrome/browser/ui/browser_window.h

Issue 10546106: TabContentsWrapper -> TabContents, part 53. (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/ui/browser_win.cc ('k') | chrome/browser/ui/constrained_window_tab_helper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/browser_window.h
diff --git a/chrome/browser/ui/browser_window.h b/chrome/browser/ui/browser_window.h
index 634208e445980ac7803a977197228c4feda44778..b7b71cabea20f0fb3962fe39c626e44ea5314ac2 100644
--- a/chrome/browser/ui/browser_window.h
+++ b/chrome/browser/ui/browser_window.h
@@ -26,7 +26,6 @@ class LocationBar;
class Profile;
class StatusBubble;
class TabContents;
-typedef TabContents TabContentsWrapper;
class TemplateURL;
#if !defined(OS_MACOSX)
class ToolbarView;
@@ -167,7 +166,7 @@ class BrowserWindow : public BaseWindow {
virtual void UpdateReloadStopState(bool is_loading, bool force) = 0;
// Updates the toolbar with the state for the specified |contents|.
- virtual void UpdateToolbar(TabContentsWrapper* contents,
+ virtual void UpdateToolbar(TabContents* contents,
bool should_restore_state) = 0;
// Focuses the toolbar (for accessibility).
@@ -292,7 +291,7 @@ class BrowserWindow : public BaseWindow {
// that page/frame. If |show_history| is true, a section showing how many
// times that URL has been visited is added to the page info.
virtual void ShowWebsiteSettings(Profile* profile,
- TabContentsWrapper* tab_contents_wrapper,
+ TabContents* tab_contents,
const GURL& url,
const content::SSLStatus& ssl,
bool show_history) = 0;
@@ -315,8 +314,7 @@ class BrowserWindow : public BaseWindow {
const content::NativeWebKeyboardEvent& event) = 0;
// Shows the create web app shortcut dialog box.
- virtual void ShowCreateWebAppShortcutsDialog(
- TabContentsWrapper* tab_contents) = 0;
+ virtual void ShowCreateWebAppShortcutsDialog(TabContents* tab_contents) = 0;
// Shows the create chrome app shortcut dialog box.
virtual void ShowCreateChromeAppShortcutsDialog(Profile* profile,
@@ -342,7 +340,7 @@ class BrowserWindow : public BaseWindow {
#endif
// Invoked when instant's tab contents should be shown.
- virtual void ShowInstant(TabContentsWrapper* preview) = 0;
+ virtual void ShowInstant(TabContents* preview) = 0;
// Invoked when the instant's tab contents should be hidden.
virtual void HideInstant() = 0;
« no previous file with comments | « chrome/browser/ui/browser_win.cc ('k') | chrome/browser/ui/constrained_window_tab_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698