| Index: chrome/browser/ui/views/collected_cookies_views.h
|
| diff --git a/chrome/browser/ui/views/collected_cookies_views.h b/chrome/browser/ui/views/collected_cookies_views.h
|
| index d06ac12a33ba2de65f314370340a4fe8053285ac..7acfeb53ef2c19f03f0529fe6b90d675611dd72a 100644
|
| --- a/chrome/browser/ui/views/collected_cookies_views.h
|
| +++ b/chrome/browser/ui/views/collected_cookies_views.h
|
| @@ -49,6 +49,9 @@ class CollectedCookiesViews : public views::DialogDelegateView,
|
| virtual int GetDialogButtons() const OVERRIDE;
|
| virtual string16 GetDialogButtonLabel(ui::DialogButton button) const OVERRIDE;
|
| virtual void DeleteDelegate() OVERRIDE;
|
| + virtual bool UseChromeStyle() const OVERRIDE;
|
| + virtual void GetChromeStyleMargins(int* vertical_edge,
|
| + int* horizontal_edge) const OVERRIDE;
|
| virtual bool Cancel() OVERRIDE;
|
| virtual views::View* GetContentsView() OVERRIDE;
|
|
|
| @@ -68,6 +71,10 @@ class CollectedCookiesViews : public views::DialogDelegateView,
|
| views::View* child) OVERRIDE;
|
|
|
| private:
|
| + struct LayoutParams;
|
| + static const LayoutParams standard_layout_params;
|
| + static const LayoutParams chrome_style_layout_params;
|
| +
|
| virtual ~CollectedCookiesViews();
|
|
|
| void Init();
|
| @@ -76,6 +83,8 @@ class CollectedCookiesViews : public views::DialogDelegateView,
|
|
|
| views::View* CreateBlockedPane();
|
|
|
| + views::TextButton* CreateTextButton(const string16& text);
|
| +
|
| void EnableControls();
|
|
|
| void ShowCookieInfo();
|
| @@ -114,6 +123,8 @@ class CollectedCookiesViews : public views::DialogDelegateView,
|
|
|
| bool status_changed_;
|
|
|
| + const LayoutParams& layout_params_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(CollectedCookiesViews);
|
| };
|
|
|
|
|