diff options
Diffstat (limited to 'chrome/browser/bookmarks/bookmark_pasteboard_helper_mac.mm')
-rw-r--r-- | chrome/browser/bookmarks/bookmark_pasteboard_helper_mac.mm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/bookmarks/bookmark_pasteboard_helper_mac.mm b/chrome/browser/bookmarks/bookmark_pasteboard_helper_mac.mm index 591b60a..c32ee8e 100644 --- a/chrome/browser/bookmarks/bookmark_pasteboard_helper_mac.mm +++ b/chrome/browser/bookmarks/bookmark_pasteboard_helper_mac.mm @@ -242,7 +242,7 @@ namespace bookmark_pasteboard_helper_mac { void WriteToPasteboard(PasteboardType type, const std::vector<BookmarkNodeData::Element>& elements, - const FilePath& profile_path) { + const base::FilePath& profile_path) { if (elements.empty()) return; @@ -264,12 +264,12 @@ void WriteToPasteboard(PasteboardType type, bool ReadFromPasteboard(PasteboardType type, std::vector<BookmarkNodeData::Element>& elements, - FilePath* profile_path) { + base::FilePath* profile_path) { NSPasteboard* pb = PasteboardFromType(type); elements.clear(); NSString* profile = [pb stringForType:kChromiumProfilePathPboardType]; - *profile_path = FilePath(base::SysNSStringToUTF8(profile)); + *profile_path = base::FilePath(base::SysNSStringToUTF8(profile)); return ReadBookmarkDictionaryListPboardType(pb, elements) || ReadWebURLsWithTitlesPboardType(pb, elements) || ReadNSURLPboardType(pb, elements); |