| Index: components/bookmarks/browser/bookmark_pasteboard_helper_mac.mm
|
| diff --git a/components/bookmarks/core/browser/bookmark_pasteboard_helper_mac.mm b/components/bookmarks/browser/bookmark_pasteboard_helper_mac.mm
|
| similarity index 97%
|
| rename from components/bookmarks/core/browser/bookmark_pasteboard_helper_mac.mm
|
| rename to components/bookmarks/browser/bookmark_pasteboard_helper_mac.mm
|
| index 04e2df740d532cb1d4d9f862fe68bdce93ec0c5a..845929a48e64110e2e98e4654e6f8dc942285716 100644
|
| --- a/components/bookmarks/core/browser/bookmark_pasteboard_helper_mac.mm
|
| +++ b/components/bookmarks/browser/bookmark_pasteboard_helper_mac.mm
|
| @@ -2,13 +2,13 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "components/bookmarks/core/browser/bookmark_pasteboard_helper_mac.h"
|
| +#include "components/bookmarks/browser/bookmark_pasteboard_helper_mac.h"
|
|
|
| #import <Cocoa/Cocoa.h>
|
|
|
| #include "base/files/file_path.h"
|
| #include "base/strings/sys_string_conversions.h"
|
| -#include "components/bookmarks/core/browser/bookmark_node.h"
|
| +#include "components/bookmarks/browser/bookmark_node.h"
|
| #include "ui/base/clipboard/clipboard.h"
|
|
|
| NSString* const kBookmarkDictionaryListPboardType =
|
| @@ -100,7 +100,8 @@ bool ReadWebURLsWithTitlesPboardType(
|
|
|
| NSUInteger len = [titlesArr count];
|
| for (NSUInteger i = 0; i < len; ++i) {
|
| - base::string16 title = base::SysNSStringToUTF16([titlesArr objectAtIndex:i]);
|
| + base::string16 title =
|
| + base::SysNSStringToUTF16([titlesArr objectAtIndex:i]);
|
| std::string url = base::SysNSStringToUTF8([urlsArr objectAtIndex:i]);
|
| if (!url.empty()) {
|
| BookmarkNodeData::Element element;
|
|
|