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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
103 content::WebContents* web_contents_; | 103 content::WebContents* web_contents_; |
104 | 104 |
105 // A registrar for listening for WEB_CONTENTS_DESTROYED notifications. | 105 // A registrar for listening for WEB_CONTENTS_DESTROYED notifications. |
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_; |
Peter Kasting
2013/09/09 18:19:02
Tiny nit: It might be nice to order all these in v
npentrel
2013/09/09 22:08:34
They are not always all used. I think it would be
Peter Kasting
2013/09/10 00:22:11
OK, let me rephrase:
I would like these to be in
npentrel
2013/09/10 16:46:38
Ok, I changed it to visual order. I thought it was
| |
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_; | |
116 scoped_ptr<views::MenuRunner> menu_runner_; | 118 scoped_ptr<views::MenuRunner> menu_runner_; |
117 MediaMenuPartsMap media_menus_; | 119 MediaMenuPartsMap media_menus_; |
118 | 120 |
119 DISALLOW_IMPLICIT_CONSTRUCTORS(ContentSettingBubbleContents); | 121 DISALLOW_IMPLICIT_CONSTRUCTORS(ContentSettingBubbleContents); |
120 }; | 122 }; |
121 | 123 |
122 #endif // CHROME_BROWSER_UI_VIEWS_CONTENT_SETTING_BUBBLE_CONTENTS_H_ | 124 #endif // CHROME_BROWSER_UI_VIEWS_CONTENT_SETTING_BUBBLE_CONTENTS_H_ |
OLD | NEW |