| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 virtual void ButtonPressed(views::Button* sender, | 57 virtual void ButtonPressed(views::Button* sender, |
| 58 const ui::Event& event) OVERRIDE; | 58 const ui::Event& event) OVERRIDE; |
| 59 | 59 |
| 60 // views::TabbedPaneListener: | 60 // views::TabbedPaneListener: |
| 61 virtual void TabSelectedAt(int index) OVERRIDE; | 61 virtual void TabSelectedAt(int index) OVERRIDE; |
| 62 | 62 |
| 63 // views::TreeViewController: | 63 // views::TreeViewController: |
| 64 virtual void OnTreeViewSelectionChanged(views::TreeView* tree_view) OVERRIDE; | 64 virtual void OnTreeViewSelectionChanged(views::TreeView* tree_view) OVERRIDE; |
| 65 | 65 |
| 66 // views::View: | 66 // views::View: |
| 67 virtual gfx::Size GetMinimumSize() OVERRIDE; | 67 virtual gfx::Size GetMinimumSize() const OVERRIDE; |
| 68 virtual void ViewHierarchyChanged( | 68 virtual void ViewHierarchyChanged( |
| 69 const ViewHierarchyChangedDetails& details) OVERRIDE; | 69 const ViewHierarchyChangedDetails& details) OVERRIDE; |
| 70 | 70 |
| 71 private: | 71 private: |
| 72 virtual ~CollectedCookiesViews(); | 72 virtual ~CollectedCookiesViews(); |
| 73 | 73 |
| 74 void Init(); | 74 void Init(); |
| 75 | 75 |
| 76 views::View* CreateAllowedPane(); | 76 views::View* CreateAllowedPane(); |
| 77 | 77 |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 CookieInfoView* cookie_info_view_; | 116 CookieInfoView* cookie_info_view_; |
| 117 | 117 |
| 118 InfobarView* infobar_; | 118 InfobarView* infobar_; |
| 119 | 119 |
| 120 bool status_changed_; | 120 bool status_changed_; |
| 121 | 121 |
| 122 DISALLOW_COPY_AND_ASSIGN(CollectedCookiesViews); | 122 DISALLOW_COPY_AND_ASSIGN(CollectedCookiesViews); |
| 123 }; | 123 }; |
| 124 | 124 |
| 125 #endif // CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_VIEWS_H_ | 125 #endif // CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_VIEWS_H_ |
| OLD | NEW |