summaryrefslogtreecommitdiffstats
path: root/chrome/browser/cocoa/bookmark_drag_source.h
diff options
context:
space:
mode:
authorfeldstein@chromium.org <feldstein@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-07 03:43:51 +0000
committerfeldstein@chromium.org <feldstein@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-07 03:43:51 +0000
commiteda74d6837b1d8915a15f1a0598d1ce3c99b5cb0 (patch)
tree22f0a72166f5f9b34e37974489b991319ec16baf /chrome/browser/cocoa/bookmark_drag_source.h
parentc3c91a64cba4f083f0aed48a7c4719303dd89e7d (diff)
downloadchromium_src-eda74d6837b1d8915a15f1a0598d1ce3c99b5cb0.zip
chromium_src-eda74d6837b1d8915a15f1a0598d1ce3c99b5cb0.tar.gz
chromium_src-eda74d6837b1d8915a15f1a0598d1ce3c99b5cb0.tar.bz2
Initial implementation of Drag and Drop for the extension BMM.
Review URL: http://codereview.chromium.org/660139 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40858 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/cocoa/bookmark_drag_source.h')
-rw-r--r--chrome/browser/cocoa/bookmark_drag_source.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/chrome/browser/cocoa/bookmark_drag_source.h b/chrome/browser/cocoa/bookmark_drag_source.h
new file mode 100644
index 0000000..fde2086
--- /dev/null
+++ b/chrome/browser/cocoa/bookmark_drag_source.h
@@ -0,0 +1,30 @@
+// 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>
+
+#include "chrome/browser/bookmarks/bookmark_drag_data.h"
+#include "chrome/browser/cocoa/web_contents_drag_source.h"
+
+// A class that handles tracking and event processing for a drag and drop
+// originating from the content area.
+@interface BookmarkDragSource : WebContentsDragSource {
+ @private
+ // Our drop data. Should only be initialized once.
+ std::vector<BookmarkDragData::Element> dropData_;
+
+ Profile* profile_;
+}
+
+// Initialize a DragDataSource object for a drag (originating on the given
+// contentsView and with the given dropData and pboard). Fill the pasteboard
+// with data types appropriate for dropData.
+- (id)initWithContentsView:(TabContentsViewCocoa*)contentsView
+ dropData:
+ (const std::vector<BookmarkDragData::Element>&)dropData
+ profile:(Profile*)profile
+ pasteboard:(NSPasteboard*)pboard
+ dragOperationMask:(NSDragOperation)dragOperationMask;
+
+@end