| 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 <list> | 8 #include <list> |
| 9 #include <map> | 9 #include <map> |
| 10 | 10 |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "components/content_settings/core/common/content_settings_types.h" | 13 #include "components/content_settings/core/common/content_settings_types.h" |
| 14 #include "content/public/browser/web_contents_observer.h" | 14 #include "content/public/browser/web_contents_observer.h" |
| 15 #include "content/public/common/media_stream_request.h" | 15 #include "content/public/common/media_stream_request.h" |
| 16 #include "ui/base/models/combobox_model.h" | 16 #include "ui/base/models/combobox_model.h" |
| 17 #include "ui/views/bubble/bubble_dialog_delegate.h" | 17 #include "ui/views/bubble/bubble_dialog_delegate.h" |
| 18 #include "ui/views/controls/button/button.h" | 18 #include "ui/views/controls/button/button.h" |
| 19 #include "ui/views/controls/combobox/combobox_listener.h" | 19 #include "ui/views/controls/combobox/combobox_listener.h" |
| 20 #include "ui/views/controls/link_listener.h" | 20 #include "ui/views/controls/link_listener.h" |
| 21 | 21 |
| 22 class ContentSettingBubbleModel; | 22 class ContentSettingBubbleModel; |
| 23 class Profile; | |
| 24 | 23 |
| 25 namespace chrome { | 24 namespace chrome { |
| 26 class ContentSettingBubbleViewsBridge; | 25 class ContentSettingBubbleViewsBridge; |
| 27 } | 26 } |
| 28 | 27 |
| 29 namespace views { | 28 namespace views { |
| 30 class RadioButton; | 29 class RadioButton; |
| 31 class LabelButton; | 30 class LabelButton; |
| 32 } | 31 } |
| 33 | 32 |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 views::LabelButton* manage_button_; | 119 views::LabelButton* manage_button_; |
| 121 views::Link* learn_more_link_; | 120 views::Link* learn_more_link_; |
| 122 | 121 |
| 123 // Combobox models the bubble owns. | 122 // Combobox models the bubble owns. |
| 124 std::list<MediaComboboxModel> combobox_models_; | 123 std::list<MediaComboboxModel> combobox_models_; |
| 125 | 124 |
| 126 DISALLOW_IMPLICIT_CONSTRUCTORS(ContentSettingBubbleContents); | 125 DISALLOW_IMPLICIT_CONSTRUCTORS(ContentSettingBubbleContents); |
| 127 }; | 126 }; |
| 128 | 127 |
| 129 #endif // CHROME_BROWSER_UI_VIEWS_CONTENT_SETTING_BUBBLE_CONTENTS_H_ | 128 #endif // CHROME_BROWSER_UI_VIEWS_CONTENT_SETTING_BUBBLE_CONTENTS_H_ |
| OLD | NEW |