OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_VIEWS_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_VIEWS_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_VIEWS_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_VIEWS_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "chrome/common/content_settings.h" | 9 #include "chrome/common/content_settings.h" |
10 #include "content/public/browser/notification_observer.h" | 10 #include "content/public/browser/notification_observer.h" |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 // Use BrowserWindow::ShowCollectedCookiesDialog to show. | 44 // Use BrowserWindow::ShowCollectedCookiesDialog to show. |
45 explicit CollectedCookiesViews(content::WebContents* web_contents); | 45 explicit CollectedCookiesViews(content::WebContents* web_contents); |
46 | 46 |
47 // views::DialogDelegate: | 47 // views::DialogDelegate: |
48 virtual base::string16 GetWindowTitle() const OVERRIDE; | 48 virtual base::string16 GetWindowTitle() const OVERRIDE; |
49 virtual int GetDialogButtons() const OVERRIDE; | 49 virtual int GetDialogButtons() const OVERRIDE; |
50 virtual base::string16 GetDialogButtonLabel( | 50 virtual base::string16 GetDialogButtonLabel( |
51 ui::DialogButton button) const OVERRIDE; | 51 ui::DialogButton button) const OVERRIDE; |
52 virtual void DeleteDelegate() OVERRIDE; | 52 virtual void DeleteDelegate() OVERRIDE; |
53 virtual bool Cancel() OVERRIDE; | 53 virtual bool Cancel() OVERRIDE; |
54 virtual views::NonClientFrameView* CreateNonClientFrameView( | |
55 views::Widget* widget) OVERRIDE; | |
56 virtual ui::ModalType GetModalType() const OVERRIDE; | 54 virtual ui::ModalType GetModalType() const OVERRIDE; |
57 | 55 |
58 // views::ButtonListener: | 56 // views::ButtonListener: |
59 virtual void ButtonPressed(views::Button* sender, | 57 virtual void ButtonPressed(views::Button* sender, |
60 const ui::Event& event) OVERRIDE; | 58 const ui::Event& event) OVERRIDE; |
61 | 59 |
62 // views::TabbedPaneListener: | 60 // views::TabbedPaneListener: |
63 virtual void TabSelectedAt(int index) OVERRIDE; | 61 virtual void TabSelectedAt(int index) OVERRIDE; |
64 | 62 |
65 // views::TreeViewController: | 63 // views::TreeViewController: |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 CookieInfoView* cookie_info_view_; | 116 CookieInfoView* cookie_info_view_; |
119 | 117 |
120 InfobarView* infobar_; | 118 InfobarView* infobar_; |
121 | 119 |
122 bool status_changed_; | 120 bool status_changed_; |
123 | 121 |
124 DISALLOW_COPY_AND_ASSIGN(CollectedCookiesViews); | 122 DISALLOW_COPY_AND_ASSIGN(CollectedCookiesViews); |
125 }; | 123 }; |
126 | 124 |
127 #endif // CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_VIEWS_H_ | 125 #endif // CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_VIEWS_H_ |
OLD | NEW |