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

Unified Diff: chrome/browser/extensions/app_notify_channel_ui.h

Issue 10535077: TabContentsWrapper -> TabContents, part 12. (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
Index: chrome/browser/extensions/app_notify_channel_ui.h
diff --git a/chrome/browser/extensions/app_notify_channel_ui.h b/chrome/browser/extensions/app_notify_channel_ui.h
index 45209a68cf8b18e4aa2c130b005cdcb9a62552cc..9e18e44b0a2bf497d1a12e7f8d12ccc589bafe8f 100644
--- a/chrome/browser/extensions/app_notify_channel_ui.h
+++ b/chrome/browser/extensions/app_notify_channel_ui.h
@@ -13,7 +13,6 @@
class Profile;
class TabContents;
-typedef TabContents TabContentsWrapper;
// An interface for prompting a user to sign in to sync so that we can create
// an app notification channel for one of their apps.
@@ -47,7 +46,7 @@ class AppNotifyChannelUIImpl : public AppNotifyChannelUI,
public ProfileSyncServiceObserver {
public:
AppNotifyChannelUIImpl(Profile* profile,
- TabContentsWrapper* wrapper,
+ TabContents* tab_contents,
const std::string& app_name,
AppNotifyChannelUI::UIType ui_type);
virtual ~AppNotifyChannelUIImpl();
@@ -57,7 +56,7 @@ class AppNotifyChannelUIImpl : public AppNotifyChannelUI,
protected:
// A private class we use to put up an infobar - its lifetime is managed by
- // |wrapper_|, so we don't have one as an instance variable.
+ // |tab_contents_|, so we don't have one as an instance variable.
class InfoBar;
friend class AppNotifyChannelUIImpl::InfoBar;
@@ -72,7 +71,7 @@ class AppNotifyChannelUIImpl : public AppNotifyChannelUI,
void StopObservingSync();
Profile* profile_;
- TabContentsWrapper* wrapper_;
+ TabContents* tab_contents_;
std::string app_name_;
AppNotifyChannelUI::UIType ui_type_;
AppNotifyChannelUI::Delegate* delegate_;
« no previous file with comments | « chrome/browser/extensions/api/web_request/web_request_apitest.cc ('k') | chrome/browser/extensions/app_notify_channel_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698