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 #include "base/time.h" | 8 #include "base/time.h" |
9 | 9 |
10 class BaseDownloadItemModel; | 10 class BaseDownloadItemModel; |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 - (void)clearDangerousMode; | 91 - (void)clearDangerousMode; |
92 - (BOOL)isDangerousMode; | 92 - (BOOL)isDangerousMode; |
93 - (IBAction)saveDownload:(id)sender; | 93 - (IBAction)saveDownload:(id)sender; |
94 - (IBAction)discardDownload:(id)sender; | 94 - (IBAction)discardDownload:(id)sender; |
95 | 95 |
96 // Context menu handlers. | 96 // Context menu handlers. |
97 - (IBAction)handleOpen:(id)sender; | 97 - (IBAction)handleOpen:(id)sender; |
98 - (IBAction)handleAlwaysOpen:(id)sender; | 98 - (IBAction)handleAlwaysOpen:(id)sender; |
99 - (IBAction)handleReveal:(id)sender; | 99 - (IBAction)handleReveal:(id)sender; |
100 - (IBAction)handleCancel:(id)sender; | 100 - (IBAction)handleCancel:(id)sender; |
| 101 - (IBAction)handleTogglePause:(id)sender; |
101 | 102 |
102 @end | 103 @end |
103 | 104 |
OLD | NEW |