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 | 6 |
7 #import <Cocoa/Cocoa.h> | 7 #import <Cocoa/Cocoa.h> |
8 | 8 |
9 #import "base/mac/cocoa_protocols.h" | 9 #import "base/mac/cocoa_protocols.h" |
10 #include "base/scoped_nsobject.h" | 10 #include "base/scoped_nsobject.h" |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 // Callback for "manage" button. | 58 // Callback for "manage" button. |
59 - (IBAction)manageBlocking:(id)sender; | 59 - (IBAction)manageBlocking:(id)sender; |
60 | 60 |
61 // Callback for "info" link. | 61 // Callback for "info" link. |
62 - (IBAction)showMoreInfo:(id)sender; | 62 - (IBAction)showMoreInfo:(id)sender; |
63 | 63 |
64 // Callback for "load all plugins" button. | 64 // Callback for "load all plugins" button. |
65 - (IBAction)loadAllPlugins:(id)sender; | 65 - (IBAction)loadAllPlugins:(id)sender; |
66 | 66 |
67 @end | 67 @end |
OLD | NEW |