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

Unified Diff: chrome/browser/chromeos/contacts/contact.proto

Issue 10933127: contacts: Don't save deleted contacts to disk. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 8 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: chrome/browser/chromeos/contacts/contact.proto
diff --git a/chrome/browser/chromeos/contacts/contact.proto b/chrome/browser/chromeos/contacts/contact.proto
index 3d605e2283c083da1dbb0d3efbe14843434e2189..2926b4331e78c5b13ac18732f0fd68ce0b1b0dc1 100644
--- a/chrome/browser/chromeos/contacts/contact.proto
+++ b/chrome/browser/chromeos/contacts/contact.proto
@@ -104,9 +104,13 @@ message Contact {
// Singleton message used by ContactDatabase to store update-related metadata.
message UpdateMetadata {
- // Next ID to use: 2
+ // Next ID to use: 3
// Time at which the last successful update was started, as given by
// base::Time::ToInternalValue().
optional int64 last_update_start_time = 1;
+
+ // Latest time that we've seen in a contact's |update_time| field. Note that
+ // the time may have come from a deleted contact that has been discarded.
+ optional int64 last_contact_update_time = 2;
}

Powered by Google App Engine
This is Rietveld 408576698