summaryrefslogtreecommitdiffstats
path: root/chrome/browser/cocoa/download/download_item_button.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/cocoa/download/download_item_button.h')
-rw-r--r--chrome/browser/cocoa/download/download_item_button.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/chrome/browser/cocoa/download/download_item_button.h b/chrome/browser/cocoa/download/download_item_button.h
deleted file mode 100644
index 2b38399..0000000
--- a/chrome/browser/cocoa/download/download_item_button.h
+++ /dev/null
@@ -1,27 +0,0 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#import <Cocoa/Cocoa.h>
-
-#import "base/cocoa_protocols_mac.h"
-#include "base/file_path.h"
-#import "chrome/browser/cocoa/draggable_button.h"
-
-@class DownloadItemController;
-
-// A button that is a drag source for a file and that displays a context menu
-// instead of firing an action when clicked in a certain area.
-@interface DownloadItemButton : DraggableButton<NSMenuDelegate> {
- @private
- FilePath downloadPath_;
- DownloadItemController* controller_; // weak
-}
-
-@property(assign, nonatomic) FilePath download;
-@property(assign, nonatomic) DownloadItemController* controller;
-
-// Overridden from DraggableButton.
-- (void)beginDrag:(NSEvent*)event;
-
-@end