| 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 #include "base/cocoa_protocols_mac.h" | 7 #include "base/cocoa_protocols_mac.h" |
| 8 #include "base/scoped_ptr.h" | 8 #include "base/scoped_ptr.h" |
| 9 #include "chrome/browser/geolocation/geolocation_content_settings_map.h" | 9 #include "chrome/browser/geolocation/geolocation_content_settings_map.h" |
| 10 | 10 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 // Shows or makes frontmost the geolocation exceptions window. | 30 // Shows or makes frontmost the geolocation exceptions window. |
| 31 // Changes made by the user in the window are persisted in |settingsMap|. | 31 // Changes made by the user in the window are persisted in |settingsMap|. |
| 32 + (id)controllerWithSettingsMap:(GeolocationContentSettingsMap*)settingsMap; | 32 + (id)controllerWithSettingsMap:(GeolocationContentSettingsMap*)settingsMap; |
| 33 | 33 |
| 34 // Sets the minimum width of the sheet and resizes it if necessary. | 34 // Sets the minimum width of the sheet and resizes it if necessary. |
| 35 - (void)setMinWidth:(CGFloat)minWidth; | 35 - (void)setMinWidth:(CGFloat)minWidth; |
| 36 | 36 |
| 37 - (void)attachSheetTo:(NSWindow*)window; | 37 - (void)attachSheetTo:(NSWindow*)window; |
| 38 - (IBAction)closeSheet:(id)sender; | 38 - (IBAction)closeSheet:(id)sender; |
| 39 | 39 |
| 40 - (IBAction)removeException:(id)sender; | 40 - (IBAction)removeRow:(id)sender; |
| 41 - (IBAction)removeAllExceptions:(id)sender; | 41 - (IBAction)removeAll:(id)sender; |
| 42 | 42 |
| 43 @end | 43 @end |
| OLD | NEW |