Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(396)

Side by Side Diff: chrome/browser/cocoa/download_item_button.h

Issue 180036: Make download items drag sources on OS X. (Closed)
Patch Set: comments Created 10 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW
« no previous file with comments | « chrome/browser/cocoa/bookmark_button_unittest.mm ('k') | chrome/browser/cocoa/download_item_button.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698