Index: sync/internal_api/write_node.cc |
diff --git a/sync/internal_api/write_node.cc b/sync/internal_api/write_node.cc |
index 5ffa79575caea3fae182db15410d88e8b1c758c9..6f70b3da11bc2debfe95b2af23503f1840e7c92d 100644 |
--- a/sync/internal_api/write_node.cc |
+++ b/sync/internal_api/write_node.cc |
@@ -104,12 +104,6 @@ void WriteNode::SetTitle(const std::wstring& title) { |
MarkForSyncing(); |
} |
-void WriteNode::SetURL(const GURL& url) { |
- sync_pb::BookmarkSpecifics new_value = GetBookmarkSpecifics(); |
- new_value.set_url(url.spec()); |
- SetBookmarkSpecifics(new_value); |
-} |
- |
void WriteNode::SetAppSpecifics( |
const sync_pb::AppSpecifics& new_value) { |
sync_pb::EntitySpecifics entity_specifics; |
@@ -513,12 +507,6 @@ bool WriteNode::PutPredecessor(const BaseNode* predecessor) { |
return true; |
} |
-void WriteNode::SetFaviconBytes(const vector<unsigned char>& bytes) { |
- sync_pb::BookmarkSpecifics new_value = GetBookmarkSpecifics(); |
- new_value.set_favicon(bytes.empty() ? NULL : &bytes[0], bytes.size()); |
- SetBookmarkSpecifics(new_value); |
-} |
- |
void WriteNode::MarkForSyncing() { |
syncable::MarkForSyncing(entry_); |
} |