Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(257)

Unified Diff: components/bookmarks/browser/bookmark_pasteboard_helper_mac.mm

Issue 284893003: Move bookmarks/core/... to bookmarks/... (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing errors reported by presubmit Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
« no previous file with comments | « components/bookmarks/browser/bookmark_pasteboard_helper_mac.h ('k') | components/bookmarks/browser/bookmark_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698