| 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_;
|
|
|
|
|