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" | |
11 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/macros.h" |
12 #include "components/content_settings/core/common/content_settings_types.h" | 12 #include "components/content_settings/core/common/content_settings_types.h" |
13 #include "content/public/browser/web_contents_observer.h" | 13 #include "content/public/browser/web_contents_observer.h" |
14 #include "content/public/common/media_stream_request.h" | 14 #include "content/public/common/media_stream_request.h" |
15 #include "ui/views/bubble/bubble_delegate.h" | 15 #include "ui/views/bubble/bubble_delegate.h" |
16 #include "ui/views/controls/button/button.h" | 16 #include "ui/views/controls/button/button.h" |
17 #include "ui/views/controls/button/menu_button_listener.h" | 17 #include "ui/views/controls/button/menu_button_listener.h" |
18 #include "ui/views/controls/link_listener.h" | 18 #include "ui/views/controls/link_listener.h" |
19 | 19 |
20 class ContentSettingBubbleModel; | 20 class ContentSettingBubbleModel; |
21 class ContentSettingMediaMenuModel; | 21 class ContentSettingMediaMenuModel; |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 views::Link* manage_link_; | 101 views::Link* manage_link_; |
102 views::Link* learn_more_link_; | 102 views::Link* learn_more_link_; |
103 views::LabelButton* close_button_; | 103 views::LabelButton* close_button_; |
104 scoped_ptr<views::MenuRunner> menu_runner_; | 104 scoped_ptr<views::MenuRunner> menu_runner_; |
105 MediaMenuPartsMap media_menus_; | 105 MediaMenuPartsMap media_menus_; |
106 | 106 |
107 DISALLOW_IMPLICIT_CONSTRUCTORS(ContentSettingBubbleContents); | 107 DISALLOW_IMPLICIT_CONSTRUCTORS(ContentSettingBubbleContents); |
108 }; | 108 }; |
109 | 109 |
110 #endif // CHROME_BROWSER_UI_VIEWS_CONTENT_SETTING_BUBBLE_CONTENTS_H_ | 110 #endif // CHROME_BROWSER_UI_VIEWS_CONTENT_SETTING_BUBBLE_CONTENTS_H_ |
OLD | NEW |