Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Unified Diff: components/sync/protocol/proto_value_conversions.cc

Issue 2452713003: [Sync] Implement MemoryDumpProvider. (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/sync/protocol/proto_value_conversions.cc
diff --git a/components/sync/protocol/proto_value_conversions.cc b/components/sync/protocol/proto_value_conversions.cc
index 1f6bf95b148b1c61af1845a514069270b84f198d..4308b40016bb4f08f54ee8629c3e2b4644735c15 100644
--- a/components/sync/protocol/proto_value_conversions.cc
+++ b/components/sync/protocol/proto_value_conversions.cc
@@ -168,6 +168,22 @@ class ToValueVisitor {
}
}
+ // EnhancedBookmarksFlags
+ template <class P>
+ void Visit(const P& parent_proto,
+ const char* field_name,
+ const sync_pb::EnhancedBookmarksFlags& field) {
+ // Obsolete, don't visit
+ }
+
+ // WalletSyncFlags
+ template <class P>
+ void Visit(const P& parent_proto,
+ const char* field_name,
+ const sync_pb::WalletSyncFlags& field) {
+ // Obsolete, don't visit
+ }
+
// PasswordSpecificsData
std::unique_ptr<base::DictionaryValue> ToValue(
const sync_pb::PasswordSpecificsData& proto) const {

Powered by Google App Engine
This is Rietveld 408576698