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

Unified Diff: chrome/browser/ui/gtk/collected_cookies_gtk.h

Issue 10545115: TabContentsWrapper -> TabContents, part 41. (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/gtk/browser_window_gtk.cc ('k') | chrome/browser/ui/gtk/collected_cookies_gtk.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/gtk/collected_cookies_gtk.h
diff --git a/chrome/browser/ui/gtk/collected_cookies_gtk.h b/chrome/browser/ui/gtk/collected_cookies_gtk.h
index 5b0ef49997596f5575bea8aa19c80a21a19aebbc..b6a258ee9e84ca8fb8ccdea260311f2d4472ad09 100644
--- a/chrome/browser/ui/gtk/collected_cookies_gtk.h
+++ b/chrome/browser/ui/gtk/collected_cookies_gtk.h
@@ -21,18 +21,17 @@
class CookiesTreeModel;
class TabContents;
-typedef TabContents TabContentsWrapper;
// CollectedCookiesGtk is a dialog that displays the allowed and blocked
// cookies of the current tab contents. To display the dialog, invoke
-// ShowCollectedCookiesDialog() on the delegate of the tab contents wrapper's
+// ShowCollectedCookiesDialog() on the delegate of the tab contents's
// content settings tab helper.
class CollectedCookiesGtk : public ConstrainedWindowGtkDelegate,
public gtk_tree::TreeAdapter::Delegate,
public content::NotificationObserver {
public:
- CollectedCookiesGtk(GtkWindow* parent, TabContentsWrapper* wrapper);
+ CollectedCookiesGtk(GtkWindow* parent, TabContents* tab_contents);
// ConstrainedWindowGtkDelegate methods.
virtual GtkWidget* GetWidgetRoot() OVERRIDE;
@@ -115,8 +114,8 @@ class CollectedCookiesGtk : public ConstrainedWindowGtkDelegate,
// Displays information about selected cookie.
GtkWidget* cookie_info_view_;
- // The tab contents wrapper.
- TabContentsWrapper* wrapper_;
+ // The tab contents.
+ TabContents* tab_contents_;
bool status_changed_;
« no previous file with comments | « chrome/browser/ui/gtk/browser_window_gtk.cc ('k') | chrome/browser/ui/gtk/collected_cookies_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698