Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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. | |
| 4 | |
| 5 #include "components/bookmarks/core/browser/bookmark_node_data.h" | |
| 6 | |
| 7 // static | |
| 8 void BookmarkNodeData::WriteToClipboard(ui::ClipboardType type) { | |
| 9 } | |
|
noyau (Ping after 24h)
2014/05/05 13:42:23
Should this be a NOTREACHED()?
sdefresne
2014/05/05 14:45:50
Done.
| |
| 10 | |
| 11 bool BookmarkNodeData::ReadFromClipboard(ui::ClipboardType type) { | |
| 12 return false; | |
| 13 } | |
| 14 | |
| 15 bool BookmarkNodeData::ClipboardContainsBookmarks() { | |
| 16 return false; | |
| 17 } | |
| OLD | NEW |