| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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/scoped_ptr.h" | 7 #include "base/scoped_ptr.h" |
| 8 | 8 |
| 9 class BaseDownloadItemModel; | 9 class BaseDownloadItemModel; |
| 10 @class DownloadItemCell; | 10 @class DownloadItemCell; |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 // Asynchronous icon loading callback. | 49 // Asynchronous icon loading callback. |
| 50 - (void)setIcon:(NSImage*)icon; | 50 - (void)setIcon:(NSImage*)icon; |
| 51 | 51 |
| 52 // Download item button clicked | 52 // Download item button clicked |
| 53 - (IBAction)handleButtonClick:(id)sender; | 53 - (IBAction)handleButtonClick:(id)sender; |
| 54 | 54 |
| 55 // Context menu handlers. | 55 // Context menu handlers. |
| 56 - (IBAction)handleOpen:(id)sender; | 56 - (IBAction)handleOpen:(id)sender; |
| 57 - (IBAction)handleAlwaysOpen:(id)sender; | 57 - (IBAction)handleAlwaysOpen:(id)sender; |
| 58 - (IBAction)handleReveal:(id)sender; | 58 - (IBAction)handleReveal:(id)sender; |
| 59 - (IBAction)handleRemove:(id)sender; |
| 59 - (IBAction)handleCancel:(id)sender; | 60 - (IBAction)handleCancel:(id)sender; |
| 60 | 61 |
| 61 @end | 62 @end |
| 62 | 63 |
| OLD | NEW |