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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 // views::DialogDelegate: | 43 // views::DialogDelegate: |
44 virtual string16 GetWindowTitle() const OVERRIDE; | 44 virtual string16 GetWindowTitle() const OVERRIDE; |
45 virtual int GetDialogButtons() const OVERRIDE; | 45 virtual int GetDialogButtons() const OVERRIDE; |
46 virtual string16 GetDialogButtonLabel(ui::DialogButton button) const OVERRIDE; | 46 virtual string16 GetDialogButtonLabel(ui::DialogButton button) const OVERRIDE; |
47 virtual void DeleteDelegate() OVERRIDE; | 47 virtual void DeleteDelegate() OVERRIDE; |
48 virtual bool Cancel() OVERRIDE; | 48 virtual bool Cancel() OVERRIDE; |
49 virtual views::View* GetContentsView() OVERRIDE; | 49 virtual views::View* GetContentsView() OVERRIDE; |
50 | 50 |
51 // views::ButtonListener: | 51 // views::ButtonListener: |
52 virtual void ButtonPressed(views::Button* sender, | 52 virtual void ButtonPressed(views::Button* sender, |
53 const views::Event& event) OVERRIDE; | 53 const ui::Event& event) OVERRIDE; |
54 | 54 |
55 // views::TabbedPaneListener: | 55 // views::TabbedPaneListener: |
56 virtual void TabSelectedAt(int index) OVERRIDE; | 56 virtual void TabSelectedAt(int index) OVERRIDE; |
57 | 57 |
58 // views::TreeViewController: | 58 // views::TreeViewController: |
59 virtual void OnTreeViewSelectionChanged(views::TreeView* tree_view) OVERRIDE; | 59 virtual void OnTreeViewSelectionChanged(views::TreeView* tree_view) OVERRIDE; |
60 | 60 |
61 // views::View: | 61 // views::View: |
62 virtual void ViewHierarchyChanged(bool is_add, | 62 virtual void ViewHierarchyChanged(bool is_add, |
63 views::View* parent, | 63 views::View* parent, |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 CookieInfoView* cookie_info_view_; | 107 CookieInfoView* cookie_info_view_; |
108 | 108 |
109 InfobarView* infobar_; | 109 InfobarView* infobar_; |
110 | 110 |
111 bool status_changed_; | 111 bool status_changed_; |
112 | 112 |
113 DISALLOW_COPY_AND_ASSIGN(CollectedCookiesViews); | 113 DISALLOW_COPY_AND_ASSIGN(CollectedCookiesViews); |
114 }; | 114 }; |
115 | 115 |
116 #endif // CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_VIEWS_H_ | 116 #endif // CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_VIEWS_H_ |
OLD | NEW |