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

Unified Diff: chrome/browser/sync/protocol/proto_value_conversions.cc

Issue 7104088: Changed typed url sync to no longer modify typed/visit_count. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Updated per review comments. Created 9 years, 6 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: chrome/browser/sync/protocol/proto_value_conversions.cc
diff --git a/chrome/browser/sync/protocol/proto_value_conversions.cc b/chrome/browser/sync/protocol/proto_value_conversions.cc
index 4e2f11d378c9c7e33ce9e066c1a5c00b59b72e01..6115d8a3f03a0301ec2e19ce3665e1e88c85709b 100644
--- a/chrome/browser/sync/protocol/proto_value_conversions.cc
+++ b/chrome/browser/sync/protocol/proto_value_conversions.cc
@@ -286,10 +286,9 @@ DictionaryValue* TypedUrlSpecificsToValue(
DictionaryValue* value = new DictionaryValue();
SET_STR(url);
SET_STR(title);
- SET_INT32(typed_count);
SET_BOOL(hidden);
- SET_INT64_REP(visit);
- SET_INT32(visited_count);
+ SET_INT64_REP(visits);
+ SET_INT32_REP(visit_transitions);
return value;
}
« no previous file with comments | « chrome/browser/sync/profile_sync_service_typed_url_unittest.cc ('k') | chrome/browser/sync/protocol/typed_url_specifics.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698