| 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_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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 | 10 |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 // The InfoBubble holding us. | 87 // The InfoBubble holding us. |
| 88 InfoBubble* info_bubble_; | 88 InfoBubble* info_bubble_; |
| 89 | 89 |
| 90 // Some of our controls, so we can tell what's been clicked when we get a | 90 // Some of our controls, so we can tell what's been clicked when we get a |
| 91 // message. | 91 // message. |
| 92 PopupLinks popup_links_; | 92 PopupLinks popup_links_; |
| 93 typedef std::vector<views::RadioButton*> RadioGroup; | 93 typedef std::vector<views::RadioButton*> RadioGroup; |
| 94 RadioGroup radio_group_; | 94 RadioGroup radio_group_; |
| 95 views::NativeButton* close_button_; | 95 views::NativeButton* close_button_; |
| 96 views::Link* manage_link_; | 96 views::Link* manage_link_; |
| 97 views::Link* clear_link_; | |
| 98 views::Link* info_link_; | 97 views::Link* info_link_; |
| 99 views::Link* load_plugins_link_; | |
| 100 | 98 |
| 101 DISALLOW_IMPLICIT_CONSTRUCTORS(ContentSettingBubbleContents); | 99 DISALLOW_IMPLICIT_CONSTRUCTORS(ContentSettingBubbleContents); |
| 102 }; | 100 }; |
| 103 | 101 |
| 104 #endif // CHROME_BROWSER_UI_VIEWS_CONTENT_SETTING_BUBBLE_CONTENTS_H_ | 102 #endif // CHROME_BROWSER_UI_VIEWS_CONTENT_SETTING_BUBBLE_CONTENTS_H_ |
| OLD | NEW |