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_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_VIEW_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_VIEW_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 // views::BubbleDelegateView implementation. | 81 // views::BubbleDelegateView implementation. |
82 void OnWidgetDestroying(views::Widget* widget) override; | 82 void OnWidgetDestroying(views::Widget* widget) override; |
83 | 83 |
84 // views::ButtonListener implementation. | 84 // views::ButtonListener implementation. |
85 void ButtonPressed(views::Button* button, const ui::Event& event) override; | 85 void ButtonPressed(views::Button* button, const ui::Event& event) override; |
86 | 86 |
87 // views::LinkListener implementation. | 87 // views::LinkListener implementation. |
88 void LinkClicked(views::Link* source, int event_flags) override; | 88 void LinkClicked(views::Link* source, int event_flags) override; |
89 | 89 |
90 // views::StyledLabelListener implementation. | 90 // views::StyledLabelListener implementation. |
91 void StyledLabelLinkClicked(const gfx::Range& range, | 91 void StyledLabelLinkClicked(views::StyledLabel* label, |
| 92 const gfx::Range& range, |
92 int event_flags) override; | 93 int event_flags) override; |
93 | 94 |
94 // views::TabbedPaneListener implementations. | 95 // views::TabbedPaneListener implementations. |
95 void TabSelectedAt(int index) override; | 96 void TabSelectedAt(int index) override; |
96 | 97 |
97 // views::View implementation. | 98 // views::View implementation. |
98 gfx::Size GetPreferredSize() const override; | 99 gfx::Size GetPreferredSize() const override; |
99 | 100 |
100 // WebsiteSettingsUI implementations. | 101 // WebsiteSettingsUI implementations. |
101 void SetCookieInfo(const CookieInfoList& cookie_info_list) override; | 102 void SetCookieInfo(const CookieInfoList& cookie_info_list) override; |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 views::Link* site_settings_link_; | 191 views::Link* site_settings_link_; |
191 | 192 |
192 views::View* connection_info_content_; | 193 views::View* connection_info_content_; |
193 | 194 |
194 base::WeakPtrFactory<WebsiteSettingsPopupView> weak_factory_; | 195 base::WeakPtrFactory<WebsiteSettingsPopupView> weak_factory_; |
195 | 196 |
196 DISALLOW_COPY_AND_ASSIGN(WebsiteSettingsPopupView); | 197 DISALLOW_COPY_AND_ASSIGN(WebsiteSettingsPopupView); |
197 }; | 198 }; |
198 | 199 |
199 #endif // CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_VIEW_
H_ | 200 #endif // CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_VIEW_
H_ |
OLD | NEW |