blob: a6735f2f884d9aeafc1da8a9a799b5af9b58e4d5 [file] [log] [blame]
// 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/browser/bookmark_node_data.h"
#include "base/logging.h"
#include "base/no_destructor.h"
#include "base/pickle.h"
#include "base/strings/utf_string_conversions.h"
#include "build/build_config.h"
#include "ui/base/clipboard/clipboard_format_type.h"
#include "ui/base/dragdrop/os_exchange_data.h"
#include "url/url_constants.h"
namespace bookmarks {
// static
const ui::ClipboardFormatType& BookmarkNodeData::GetBookmarkFormatType() {
static const base::NoDestructor<ui::ClipboardFormatType> format(
ui::ClipboardFormatType::GetType(
BookmarkNodeData::kClipboardFormatString));
return *format;
}
void BookmarkNodeData::Write(const base::FilePath& profile_path,
ui::OSExchangeData* data) const {
DCHECK(data);
// If there is only one element and it is a URL, write the URL to the
// clipboard.
if (has_single_url()) {
if (elements[0].url.SchemeIs(url::kJavaScriptScheme)) {
data->SetString(base::UTF8ToUTF16(elements[0].url.spec()));
} else {
data->SetURL(elements[0].url, elements[0].title);
}
}
base::Pickle data_pickle;
WriteToPickle(profile_path, &data_pickle);
data->SetPickledData(GetBookmarkFormatType(), data_pickle);
}
bool BookmarkNodeData::Read(const ui::OSExchangeData& data) {
elements.clear();
profile_path_.clear();
if (data.HasCustomFormat(GetBookmarkFormatType())) {
base::Pickle drag_data_pickle;
if (data.GetPickledData(GetBookmarkFormatType(), &drag_data_pickle)) {
if (!ReadFromPickle(&drag_data_pickle))
return false;
}
} else {
// See if there is a URL on the clipboard.
GURL url;
base::string16 title;
if (data.GetURLAndTitle(
ui::OSExchangeData::CONVERT_FILENAMES, &url, &title))
ReadFromTuple(url, title);
}
return is_valid();
}
} // namespace bookmarks