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

Side by Side Diff: chrome/browser/chromeos/contacts/contact.proto

Issue 10836043: contacts: Add UpdateMetadata protocol buffer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add a comment Created 8 years, 4 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/chromeos/contacts/contact_database.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 // 4 //
5 // Protocol buffer definitions for the user's contacts. 5 // Protocol buffer definitions for the user's contacts.
6 6
7 syntax = "proto2"; 7 syntax = "proto2";
8 8
9 option optimize_for = LITE_RUNTIME; 9 option optimize_for = LITE_RUNTIME;
10 10
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 ICQ = 6; 90 ICQ = 6;
91 JABBER = 7; 91 JABBER = 7;
92 OTHER = 8; 92 OTHER = 8;
93 } 93 }
94 optional Protocol protocol = 2 [default = OTHER]; 94 optional Protocol protocol = 2 [default = OTHER];
95 optional AddressType type = 3; 95 optional AddressType type = 3;
96 optional bool primary = 4 [default = false]; 96 optional bool primary = 4 [default = false];
97 } 97 }
98 repeated InstantMessagingAddress instant_messaging_addresses = 14; 98 repeated InstantMessagingAddress instant_messaging_addresses = 14;
99 } 99 }
100
101 // Singleton message used by ContactDatabase to store update-related metadata.
102 message UpdateMetadata {
103 // Next ID to use: 2
104
105 // Time at which the last successful update was started, as given by
106 // base::Time::ToInternalValue().
107 optional int64 last_update_start_time = 1;
108 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/contacts/contact_database.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698