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
3 // found in the LICENSE file.
5 #include "components/bookmarks/browser/bookmark_node_data.h"
7 #include "base/logging.h"
8 #include "base/pickle.h"
9 #include "base/strings/utf_string_conversions.h"
10 #include "ui/base/clipboard/clipboard.h"
16 const char kJavaScriptScheme
[] = "javascript";
21 const ui::OSExchangeData::CustomFormat
&
22 BookmarkNodeData::GetBookmarkCustomFormat() {
23 CR_DEFINE_STATIC_LOCAL(
24 ui::OSExchangeData::CustomFormat
,
26 (ui::Clipboard::GetFormatType(BookmarkNodeData::kClipboardFormatString
)));
31 void BookmarkNodeData::Write(const base::FilePath
& profile_path
,
32 ui::OSExchangeData
* data
) const {
35 // If there is only one element and it is a URL, write the URL to the
37 if (elements
.size() == 1 && elements
[0].is_url
) {
38 if (elements
[0].url
.SchemeIs(kJavaScriptScheme
)) {
39 data
->SetString(base::UTF8ToUTF16(elements
[0].url
.spec()));
41 data
->SetURL(elements
[0].url
, elements
[0].title
);
46 WriteToPickle(profile_path
, &data_pickle
);
48 data
->SetPickledData(GetBookmarkCustomFormat(), data_pickle
);
51 bool BookmarkNodeData::Read(const ui::OSExchangeData
& data
) {
54 profile_path_
.clear();
56 if (data
.HasCustomFormat(GetBookmarkCustomFormat())) {
57 Pickle drag_data_pickle
;
58 if (data
.GetPickledData(GetBookmarkCustomFormat(), &drag_data_pickle
)) {
59 if (!ReadFromPickle(&drag_data_pickle
))
63 // See if there is a URL on the clipboard.
67 if (data
.GetURLAndTitle(
68 ui::OSExchangeData::CONVERT_FILENAMES
, &url
, &title
))
69 ReadFromTuple(url
, title
);
75 } // namespace bookmarks