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" |
11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
12 #include "chrome/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; |
22 class Profile; | 22 class Profile; |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 views::Link* manage_link_; | 105 views::Link* manage_link_; |
106 views::Link* learn_more_link_; | 106 views::Link* learn_more_link_; |
107 views::LabelButton* close_button_; | 107 views::LabelButton* close_button_; |
108 scoped_ptr<views::MenuRunner> menu_runner_; | 108 scoped_ptr<views::MenuRunner> menu_runner_; |
109 MediaMenuPartsMap media_menus_; | 109 MediaMenuPartsMap media_menus_; |
110 | 110 |
111 DISALLOW_IMPLICIT_CONSTRUCTORS(ContentSettingBubbleContents); | 111 DISALLOW_IMPLICIT_CONSTRUCTORS(ContentSettingBubbleContents); |
112 }; | 112 }; |
113 | 113 |
114 #endif // CHROME_BROWSER_UI_VIEWS_CONTENT_SETTING_BUBBLE_CONTENTS_H_ | 114 #endif // CHROME_BROWSER_UI_VIEWS_CONTENT_SETTING_BUBBLE_CONTENTS_H_ |
OLD | NEW |