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/mac/cocoa_protocols.h" | 7 #import "base/mac/cocoa_protocols.h" |
8 #include "base/scoped_ptr.h" | 8 #include "base/scoped_ptr.h" |
9 #include "chrome/browser/remove_rows_table_model.h" | 9 #include "chrome/browser/remove_rows_table_model.h" |
10 #import "chrome/browser/ui/cocoa/table_model_array_controller.h" | 10 #import "chrome/browser/ui/cocoa/table_model_array_controller.h" |
(...skipping 18 matching lines...) Expand all Loading... |
29 // Takes ownership of |model|. | 29 // Takes ownership of |model|. |
30 + (id)controllerWithTableModel:(RemoveRowsTableModel*)model; | 30 + (id)controllerWithTableModel:(RemoveRowsTableModel*)model; |
31 | 31 |
32 // Sets the minimum width of the sheet and resizes it if necessary. | 32 // Sets the minimum width of the sheet and resizes it if necessary. |
33 - (void)setMinWidth:(CGFloat)minWidth; | 33 - (void)setMinWidth:(CGFloat)minWidth; |
34 | 34 |
35 - (void)attachSheetTo:(NSWindow*)window; | 35 - (void)attachSheetTo:(NSWindow*)window; |
36 - (IBAction)closeSheet:(id)sender; | 36 - (IBAction)closeSheet:(id)sender; |
37 | 37 |
38 @end | 38 @end |
OLD | NEW |