| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #include <string> | |
| 7 | 6 |
| 8 #import <Cocoa/Cocoa.h> | 7 #import <Cocoa/Cocoa.h> |
| 9 | 8 |
| 10 #import "base/cocoa_protocols_mac.h" | 9 #import "base/cocoa_protocols_mac.h" |
| 11 #include "base/scoped_nsobject.h" | 10 #include "base/scoped_nsobject.h" |
| 12 #include "base/scoped_ptr.h" | 11 #include "base/scoped_ptr.h" |
| 13 #import "chrome/browser/cocoa/base_bubble_controller.h" | 12 #import "chrome/browser/cocoa/base_bubble_controller.h" |
| 14 | 13 |
| 15 class ContentSettingBubbleModel; | 14 class ContentSettingBubbleModel; |
| 16 @class InfoBubbleView; | 15 @class InfoBubbleView; |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 // Callback for "manage" button. | 56 // Callback for "manage" button. |
| 58 - (IBAction)manageBlocking:(id)sender; | 57 - (IBAction)manageBlocking:(id)sender; |
| 59 | 58 |
| 60 // Callback for "info" link. | 59 // Callback for "info" link. |
| 61 - (IBAction)showMoreInfo:(id)sender; | 60 - (IBAction)showMoreInfo:(id)sender; |
| 62 | 61 |
| 63 // Callback for "load all plugins" button. | 62 // Callback for "load all plugins" button. |
| 64 - (IBAction)loadAllPlugins:(id)sender; | 63 - (IBAction)loadAllPlugins:(id)sender; |
| 65 | 64 |
| 66 @end | 65 @end |
| OLD | NEW |