OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "components/bookmarks/core/browser/bookmark_pasteboard_helper_mac.h" | 5 #include "components/bookmarks/browser/bookmark_pasteboard_helper_mac.h" |
6 | 6 |
7 #import <Cocoa/Cocoa.h> | 7 #import <Cocoa/Cocoa.h> |
8 | 8 |
9 #include "base/files/file_path.h" | 9 #include "base/files/file_path.h" |
10 #include "base/strings/sys_string_conversions.h" | 10 #include "base/strings/sys_string_conversions.h" |
11 #include "components/bookmarks/core/browser/bookmark_node.h" | 11 #include "components/bookmarks/browser/bookmark_node.h" |
12 #include "ui/base/clipboard/clipboard.h" | 12 #include "ui/base/clipboard/clipboard.h" |
13 | 13 |
14 NSString* const kBookmarkDictionaryListPboardType = | 14 NSString* const kBookmarkDictionaryListPboardType = |
15 @"BookmarkDictionaryListPboardType"; | 15 @"BookmarkDictionaryListPboardType"; |
16 | 16 |
17 namespace { | 17 namespace { |
18 | 18 |
19 // An unofficial standard pasteboard title type to be provided alongside the | 19 // An unofficial standard pasteboard title type to be provided alongside the |
20 // |NSURLPboardType|. | 20 // |NSURLPboardType|. |
21 NSString* const kNSURLTitlePboardType = @"public.url-name"; | 21 NSString* const kNSURLTitlePboardType = @"public.url-name"; |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
277 bool PasteboardContainsBookmarks(ui::ClipboardType type) { | 277 bool PasteboardContainsBookmarks(ui::ClipboardType type) { |
278 NSPasteboard* pb = PasteboardFromType(type); | 278 NSPasteboard* pb = PasteboardFromType(type); |
279 | 279 |
280 NSArray* availableTypes = | 280 NSArray* availableTypes = |
281 [NSArray arrayWithObjects:kBookmarkDictionaryListPboardType, | 281 [NSArray arrayWithObjects:kBookmarkDictionaryListPboardType, |
282 kCrWebURLsWithTitlesPboardType, | 282 kCrWebURLsWithTitlesPboardType, |
283 NSURLPboardType, | 283 NSURLPboardType, |
284 nil]; | 284 nil]; |
285 return [pb availableTypeFromArray:availableTypes] != nil; | 285 return [pb availableTypeFromArray:availableTypes] != nil; |
286 } | 286 } |
OLD | NEW |