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

Side by Side Diff: components/copresence/proto/identity.proto

Issue 2130803002: Deleting the copresence API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 5 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
« no previous file with comments | « components/copresence/proto/enums.proto ('k') | components/copresence/proto/push_message.proto » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 syntax = "proto2";
2 package copresence;
3 option optimize_for = LITE_RUNTIME;
4 import "enums.proto";
5 message Identity {
6 optional IdentityType type = 1;
7 optional string chromecast_id = 3;
8 optional string android_id = 4;
9 optional string chrome_id = 5;
10 optional int64 gaia_id = 6;
11 }
12 message DeviceIdentity {
13 optional Identity identity = 1;
14 optional DeviceVersion version = 2;
15 }
16 message DeviceVersion {
17 optional string brand = 1;
18 optional string product = 2;
19 optional string version = 3;
20 }
OLDNEW
« no previous file with comments | « components/copresence/proto/enums.proto ('k') | components/copresence/proto/push_message.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698