| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_COCOA_CONTENT_SETTINGS_CONTENT_SETTING_BUBBLE_COCOA_H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_CONTENT_SETTINGS_CONTENT_SETTING_BUBBLE_COCOA_H_ |
| 7 |
| 5 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
| 6 | 9 |
| 7 #include <map> | 10 #include <map> |
| 8 #include <memory> | 11 #include <memory> |
| 9 | 12 |
| 10 #include "base/macros.h" | 13 #include "base/macros.h" |
| 11 #import "chrome/browser/ui/cocoa/omnibox_decoration_bubble_controller.h" | 14 #import "chrome/browser/ui/cocoa/omnibox_decoration_bubble_controller.h" |
| 12 #include "content/public/common/media_stream_request.h" | 15 #include "content/public/common/media_stream_request.h" |
| 13 | 16 |
| 14 class ContentSettingBubbleModel; | 17 class ContentSettingBubbleModel; |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 - (IBAction)mediaMenuChanged:(id)sender; | 110 - (IBAction)mediaMenuChanged:(id)sender; |
| 108 | 111 |
| 109 @end | 112 @end |
| 110 | 113 |
| 111 @interface ContentSettingBubbleController (TestingAPI) | 114 @interface ContentSettingBubbleController (TestingAPI) |
| 112 | 115 |
| 113 // Returns the weak reference to the |mediaMenus_|. | 116 // Returns the weak reference to the |mediaMenus_|. |
| 114 - (content_setting_bubble::MediaMenuPartsMap*)mediaMenus; | 117 - (content_setting_bubble::MediaMenuPartsMap*)mediaMenus; |
| 115 | 118 |
| 116 @end | 119 @end |
| 120 |
| 121 #endif // CHROME_BROWSER_UI_COCOA_CONTENT_SETTINGS_CONTENT_SETTING_BUBBLE_COCOA
_H_ |
| OLD | NEW |