| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #import <Cocoa/Cocoa.h> |
| 6 |
| 7 #include "base/file_path.h" |
| 8 #import "chrome/browser/cocoa/draggable_button.h" |
| 9 |
| 10 // A button that is a drag source for a file. |
| 11 @interface DownloadItemButton : DraggableButton { |
| 12 @private |
| 13 FilePath downloadPath_; |
| 14 } |
| 15 |
| 16 @property(assign, nonatomic) FilePath download; |
| 17 |
| 18 // Overridden from DraggableButton. |
| 19 - (void)beginDrag:(NSEvent*)event; |
| 20 |
| 21 @end |
| OLD | NEW |