| 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 9b1754d539e6c60ae261d4cbc9db31fe512c71ab..74df8a17d89188365fc2b300443b738c2092dc14 100644
|
| --- a/chrome/browser/ui/gtk/collected_cookies_gtk.h
|
| +++ b/chrome/browser/ui/gtk/collected_cookies_gtk.h
|
| @@ -10,6 +10,7 @@
|
|
|
| #include <gtk/gtk.h>
|
|
|
| +#include "base/compiler_specific.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "chrome/browser/ui/gtk/constrained_window_gtk.h"
|
| #include "chrome/browser/ui/gtk/gtk_tree.h"
|
| @@ -33,9 +34,9 @@ class CollectedCookiesGtk : public ConstrainedWindowGtkDelegate,
|
| CollectedCookiesGtk(GtkWindow* parent, TabContentsWrapper* wrapper);
|
|
|
| // ConstrainedWindowGtkDelegate methods.
|
| - virtual GtkWidget* GetWidgetRoot();
|
| - virtual GtkWidget* GetFocusWidget();
|
| - virtual void DeleteDelegate();
|
| + virtual GtkWidget* GetWidgetRoot() OVERRIDE;
|
| + virtual GtkWidget* GetFocusWidget() OVERRIDE;
|
| + virtual void DeleteDelegate() OVERRIDE;
|
|
|
| private:
|
| virtual ~CollectedCookiesGtk();
|
| @@ -58,7 +59,7 @@ class CollectedCookiesGtk : public ConstrainedWindowGtkDelegate,
|
| // Notification Observer implementation.
|
| virtual void Observe(int type,
|
| const content::NotificationSource& source,
|
| - const content::NotificationDetails& details);
|
| + const content::NotificationDetails& details) OVERRIDE;
|
|
|
| // Create the information panes for the allowed and blocked cookies.
|
| GtkWidget* CreateAllowedPane();
|
|
|