| 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 0b5563bd75dca7bafb32eda1de8d8c99d04d4c03..18d739e18b9b5a6fc24131faf79bb7610c219899 100644
|
| --- a/chrome/browser/ui/gtk/collected_cookies_gtk.h
|
| +++ b/chrome/browser/ui/gtk/collected_cookies_gtk.h
|
| @@ -19,6 +19,7 @@
|
| #include "ui/base/gtk/gtk_signal.h"
|
|
|
| class CookiesTreeModel;
|
| +class TabContentsWrapper;
|
|
|
| // CollectedCookiesGtk is a dialog that displays the allowed and blocked
|
| // cookies of the current tab contents. To display the dialog, invoke
|
| @@ -26,10 +27,10 @@ class CookiesTreeModel;
|
| // content settings tab helper.
|
|
|
| class CollectedCookiesGtk : public ConstrainedWindowGtkDelegate,
|
| - gtk_tree::TreeAdapter::Delegate,
|
| - NotificationObserver {
|
| + public gtk_tree::TreeAdapter::Delegate,
|
| + public NotificationObserver {
|
| public:
|
| - CollectedCookiesGtk(GtkWindow* parent, TabContents* tab_contents);
|
| + CollectedCookiesGtk(GtkWindow* parent, TabContentsWrapper* wrapper);
|
|
|
| // ConstrainedWindowGtkDelegate methods.
|
| virtual GtkWidget* GetWidgetRoot();
|
| @@ -112,8 +113,8 @@ class CollectedCookiesGtk : public ConstrainedWindowGtkDelegate,
|
| // Displays information about selected cookie.
|
| GtkWidget* cookie_info_view_;
|
|
|
| - // The tab contents.
|
| - TabContents* tab_contents_;
|
| + // The tab contents wrapper.
|
| + TabContentsWrapper* wrapper_;
|
|
|
| bool status_changed_;
|
|
|
|
|