| 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 #import <Cocoa/Cocoa.h> | 5 #import <Cocoa/Cocoa.h> |
| 6 | 6 |
| 7 #import "base/cocoa_protocols_mac.h" | 7 #import "base/cocoa_protocols_mac.h" |
| 8 #include "base/scoped_ptr.h" | 8 #include "base/scoped_ptr.h" |
| 9 #include "chrome/common/content_settings_types.h" | 9 #include "chrome/common/content_settings_types.h" |
| 10 #include "chrome/browser/pref_member.h" | 10 #include "chrome/browser/pref_member.h" |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 | 37 |
| 38 - (IBAction)showCookies:(id)sender; | 38 - (IBAction)showCookies:(id)sender; |
| 39 - (IBAction)openFlashPlayerSettings:(id)sender; | 39 - (IBAction)openFlashPlayerSettings:(id)sender; |
| 40 - (IBAction)openPluginsPage:(id)sender; | 40 - (IBAction)openPluginsPage:(id)sender; |
| 41 | 41 |
| 42 - (IBAction)showCookieExceptions:(id)sender; | 42 - (IBAction)showCookieExceptions:(id)sender; |
| 43 - (IBAction)showImagesExceptions:(id)sender; | 43 - (IBAction)showImagesExceptions:(id)sender; |
| 44 - (IBAction)showJavaScriptExceptions:(id)sender; | 44 - (IBAction)showJavaScriptExceptions:(id)sender; |
| 45 - (IBAction)showPluginsExceptions:(id)sender; | 45 - (IBAction)showPluginsExceptions:(id)sender; |
| 46 - (IBAction)showPopupsExceptions:(id)sender; | 46 - (IBAction)showPopupsExceptions:(id)sender; |
| 47 - (IBAction)showGeolocationExceptions:(id)sender; |
| 47 | 48 |
| 48 @end | 49 @end |
| OLD | NEW |