OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_VIEWS_CONTENT_BLOCKED_BUBBLE_CONTENTS_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_CONTENT_BLOCKED_BUBBLE_CONTENTS_H_ |
6 #define CHROME_BROWSER_VIEWS_CONTENT_BLOCKED_BUBBLE_CONTENTS_H_ | 6 #define CHROME_BROWSER_VIEWS_CONTENT_BLOCKED_BUBBLE_CONTENTS_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 74 matching lines...) Loading... |
85 // The InfoBubble holding us. | 85 // The InfoBubble holding us. |
86 InfoBubble* info_bubble_; | 86 InfoBubble* info_bubble_; |
87 | 87 |
88 // Some of our controls, so we can tell what's been clicked when we get a | 88 // Some of our controls, so we can tell what's been clicked when we get a |
89 // message. | 89 // message. |
90 PopupLinks popup_links_; | 90 PopupLinks popup_links_; |
91 typedef std::vector<views::RadioButton*> RadioGroup; | 91 typedef std::vector<views::RadioButton*> RadioGroup; |
92 std::vector<RadioGroup> radio_groups_; | 92 std::vector<RadioGroup> radio_groups_; |
93 views::NativeButton* close_button_; | 93 views::NativeButton* close_button_; |
94 views::Link* manage_link_; | 94 views::Link* manage_link_; |
| 95 views::Link* clear_link_; |
95 | 96 |
96 DISALLOW_IMPLICIT_CONSTRUCTORS(ContentSettingBubbleContents); | 97 DISALLOW_IMPLICIT_CONSTRUCTORS(ContentSettingBubbleContents); |
97 }; | 98 }; |
98 | 99 |
99 #endif // CHROME_BROWSER_VIEWS_CONTENT_BLOCKED_BUBBLE_CONTENTS_H_ | 100 #endif // CHROME_BROWSER_VIEWS_CONTENT_BLOCKED_BUBBLE_CONTENTS_H_ |
OLD | NEW |