diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-12 18:19:39 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-12 18:19:39 +0000 |
commit | 95aff0552740dfb517d90a074aa4bc29932a75d0 (patch) | |
tree | 0cfa16669c9c1b3a9e88264842639fc4bf4eee01 /content | |
parent | 8f9b8ddccb1d0ab3253e1de83cf7c90e2ad7a369 (diff) | |
download | chromium_src-95aff0552740dfb517d90a074aa4bc29932a75d0.zip chromium_src-95aff0552740dfb517d90a074aa4bc29932a75d0.tar.gz chromium_src-95aff0552740dfb517d90a074aa4bc29932a75d0.tar.bz2 |
Update bugs with radar links.
BUG=249271, 278515, 282916
TEST=no change to functionality
Review URL: https://chromiumcodereview.appspot.com/23442024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@222814 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content')
-rw-r--r-- | content/browser/web_contents/web_drag_source_mac.mm | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/content/browser/web_contents/web_drag_source_mac.mm b/content/browser/web_contents/web_drag_source_mac.mm index ec01481..0417379 100644 --- a/content/browser/web_contents/web_drag_source_mac.mm +++ b/content/browser/web_contents/web_drag_source_mac.mm @@ -420,16 +420,20 @@ void PromiseWriterHelper(const DropData& drop_data, // does not work. kPasteboardTypeFilePromiseContent is thoroughly broken: // * API: There is no good way to get the location for the drop. // <http://lists.apple.com/archives/cocoa-dev/2012/Feb/msg00706.html> + // <rdar://14943849> <http://openradar.me/14943849> // * Behavior: A file dropped in the Finder is not selected. This can be // worked around by selecting the file in the Finder using AppleEvents, // but the drop target window will come to the front of the Finder's // window list (unlike the previous behavior). <http://crbug.com/278515> + // <rdar://14943865> <http://openradar.me/14943865> // * Behavior: Files dragged over app icons in the dock do not highlight // the dock icons, and the dock icons do not accept the drop. - // <http://crbug.com/282916> + // <http://crbug.com/282916> <rdar://14943872> + // <http://openradar.me/14943872> // * Behavior: A file dropped onto the desktop is positioned at the upper // right of the desktop rather than at the position at which it was - // dropped. <http://crbug.com/284942> + // dropped. <http://crbug.com/284942> <rdar://14943881> + // <http://openradar.me/14943881> NSArray* fileUTIList = @[ base::mac::CFToNSCast(fileUTI_.get()) ]; [pasteboard_ addTypes:@[ NSFilesPromisePboardType ] owner:contentsView_]; [pasteboard_ setPropertyList:fileUTIList |