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 #include <map> | 5 #include <map> |
6 | 6 |
7 #import <Cocoa/Cocoa.h> | 7 #import <Cocoa/Cocoa.h> |
8 | 8 |
9 #import "base/mac/cocoa_protocols.h" | |
10 #include "base/memory/scoped_nsobject.h" | 9 #include "base/memory/scoped_nsobject.h" |
11 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
12 #import "chrome/browser/ui/cocoa/base_bubble_controller.h" | 11 #import "chrome/browser/ui/cocoa/base_bubble_controller.h" |
13 | 12 |
14 class ContentSettingBubbleModel; | 13 class ContentSettingBubbleModel; |
15 @class InfoBubbleView; | 14 @class InfoBubbleView; |
16 | 15 |
17 namespace content_setting_bubble { | 16 namespace content_setting_bubble { |
18 // For every "show popup" button, remember the index of the popup tab contents | 17 // For every "show popup" button, remember the index of the popup tab contents |
19 // it should open when clicked. | 18 // it should open when clicked. |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 // Callback for "info" link. | 57 // Callback for "info" link. |
59 - (IBAction)showMoreInfo:(id)sender; | 58 - (IBAction)showMoreInfo:(id)sender; |
60 | 59 |
61 // Callback for "load" (plug-ins, mixed script) button. | 60 // Callback for "load" (plug-ins, mixed script) button. |
62 - (IBAction)load:(id)sender; | 61 - (IBAction)load:(id)sender; |
63 | 62 |
64 // Callback for "Learn More" link. | 63 // Callback for "Learn More" link. |
65 - (IBAction)learnMoreLinkClicked:(id)sender; | 64 - (IBAction)learnMoreLinkClicked:(id)sender; |
66 | 65 |
67 @end | 66 @end |
OLD | NEW |