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

Unified Diff: components/bookmarks/core/browser/bookmark_node_data_mac.cc

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/core/browser/bookmark_node_data_mac.cc
diff --git a/components/bookmarks/core/browser/bookmark_node_data_mac.cc b/components/bookmarks/core/browser/bookmark_node_data_mac.cc
deleted file mode 100644
index dba2920d623c1d4ee05aae5a3faabe7b85c30b0f..0000000000000000000000000000000000000000
--- a/components/bookmarks/core/browser/bookmark_node_data_mac.cc
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// 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_node_data.h"
-
-#include "components/bookmarks/core/browser/bookmark_pasteboard_helper_mac.h"
-
-// static
-bool BookmarkNodeData::ClipboardContainsBookmarks() {
- return PasteboardContainsBookmarks(ui::CLIPBOARD_TYPE_COPY_PASTE);
-}
-
-void BookmarkNodeData::WriteToClipboard(ui::ClipboardType type) {
- WriteBookmarksToPasteboard(type, elements, profile_path_);
-}
-
-bool BookmarkNodeData::ReadFromClipboard(ui::ClipboardType type) {
- base::FilePath file_path;
- if (ReadBookmarksFromPasteboard(type, elements, &file_path)) {
- profile_path_ = file_path;
- return true;
- }
-
- return false;
-}

Powered by Google App Engine
This is Rietveld 408576698