Chromium Code Reviews| Index: components/bookmarks/core/browser/bookmark_node_data_ios.cc |
| diff --git a/components/bookmarks/core/browser/bookmark_node_data_ios.cc b/components/bookmarks/core/browser/bookmark_node_data_ios.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..badf0e6483a4e4ac00446c0748a5dc3ba6508bd2 |
| --- /dev/null |
| +++ b/components/bookmarks/core/browser/bookmark_node_data_ios.cc |
| @@ -0,0 +1,17 @@ |
| +// 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" |
| + |
| +// static |
| +void BookmarkNodeData::WriteToClipboard(ui::ClipboardType type) { |
| +} |
|
noyau (Ping after 24h)
2014/05/05 13:42:23
Should this be a NOTREACHED()?
sdefresne
2014/05/05 14:45:50
Done.
|
| + |
| +bool BookmarkNodeData::ReadFromClipboard(ui::ClipboardType type) { |
| + return false; |
| +} |
| + |
| +bool BookmarkNodeData::ClipboardContainsBookmarks() { |
| + return false; |
| +} |