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

Unified Diff: chrome/browser/ui/zoom/zoom_controller.h

Issue 10544100: TabContentsWrapper -> TabContents, part 52. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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 | « no previous file | chrome/browser/ui/zoom/zoom_controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/zoom/zoom_controller.h
diff --git a/chrome/browser/ui/zoom/zoom_controller.h b/chrome/browser/ui/zoom/zoom_controller.h
index 7f887c637ce59102bf6c95533590d6dcc6d295b8..8f27683840069ad8a582c59cb310d2b0e20535cf 100644
--- a/chrome/browser/ui/zoom/zoom_controller.h
+++ b/chrome/browser/ui/zoom/zoom_controller.h
@@ -14,7 +14,6 @@
#include "content/public/browser/web_contents_observer.h"
class TabContents;
-typedef TabContents TabContentsWrapper;
class ZoomObserver;
// Per-tab class to manage the Omnibox zoom icon.
@@ -27,7 +26,7 @@ class ZoomController : public content::NotificationObserver,
ZOOM_MINUS_ICON,
};
- explicit ZoomController(TabContentsWrapper* tab_contents);
+ explicit ZoomController(TabContents* tab_contents);
virtual ~ZoomController();
ZoomIconState zoom_icon_state() const { return zoom_icon_state_; }
@@ -61,8 +60,8 @@ class ZoomController : public content::NotificationObserver,
// Used to access the default zoom level preference.
DoublePrefMember default_zoom_level_;
- // TabContentsWrapper that owns this instance.
- TabContentsWrapper* tab_contents_wrapper_;
+ // TabContents that owns this instance.
+ TabContents* tab_contents_;
// Observer receiving notifications on state changes.
ZoomObserver* observer_;
« no previous file with comments | « no previous file | chrome/browser/ui/zoom/zoom_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698