OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_CONTENT_SETTING_BUBBLE_CONTENTS_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_CONTENT_SETTING_BUBBLE_CONTENTS_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_CONTENT_SETTING_BUBBLE_CONTENTS_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_CONTENT_SETTING_BUBBLE_CONTENTS_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 content::NotificationRegistrar registrar_; | 106 content::NotificationRegistrar registrar_; |
107 | 107 |
108 // Some of our controls, so we can tell what's been clicked when we get a | 108 // Some of our controls, so we can tell what's been clicked when we get a |
109 // message. | 109 // message. |
110 PopupLinks popup_links_; | 110 PopupLinks popup_links_; |
111 typedef std::vector<views::RadioButton*> RadioGroup; | 111 typedef std::vector<views::RadioButton*> RadioGroup; |
112 RadioGroup radio_group_; | 112 RadioGroup radio_group_; |
113 views::Link* custom_link_; | 113 views::Link* custom_link_; |
114 views::Link* manage_link_; | 114 views::Link* manage_link_; |
115 views::LabelButton* close_button_; | 115 views::LabelButton* close_button_; |
116 views::LabelButton* never_button_; | |
117 views::LabelButton* save_button_; | |
118 scoped_ptr<views::MenuRunner> menu_runner_; | 116 scoped_ptr<views::MenuRunner> menu_runner_; |
119 MediaMenuPartsMap media_menus_; | 117 MediaMenuPartsMap media_menus_; |
120 | 118 |
121 DISALLOW_IMPLICIT_CONSTRUCTORS(ContentSettingBubbleContents); | 119 DISALLOW_IMPLICIT_CONSTRUCTORS(ContentSettingBubbleContents); |
122 }; | 120 }; |
123 | 121 |
124 #endif // CHROME_BROWSER_UI_VIEWS_CONTENT_SETTING_BUBBLE_CONTENTS_H_ | 122 #endif // CHROME_BROWSER_UI_VIEWS_CONTENT_SETTING_BUBBLE_CONTENTS_H_ |
OLD | NEW |