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

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

Issue 433283002: Adding the Copresence RpcHandler and HttpPost helper. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@directive-handler
Patch Set: Rebasing off the correct CL Created 6 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
OLDNEW
1 syntax = "proto2"; 1 syntax = "proto2";
2 package copresence; 2 package copresence;
3 option optimize_for = LITE_RUNTIME; 3 option optimize_for = LITE_RUNTIME;
4 import "enums.proto"; 4 import "enums.proto";
5 message Identity { 5 message Identity {
6 optional IdentityType type = 1; 6 optional IdentityType type = 1;
7 optional string obfuscated_gaia_id = 2 [deprecated = true];
8 optional string chromecast_id = 3; 7 optional string chromecast_id = 3;
9 optional string android_id = 4; 8 optional string android_id = 4;
10 optional string chrome_id = 5; 9 optional string chrome_id = 5;
11 optional int64 gaia_id = 6; 10 optional int64 gaia_id = 6;
12 } 11 }
13 message DeviceIdentity { 12 message DeviceIdentity {
14 optional Identity identity = 1; 13 optional Identity identity = 1;
15 optional DeviceVersion version = 2; 14 optional DeviceVersion version = 2;
16 } 15 }
17 message DeviceVersion { 16 message DeviceVersion {
18 optional string brand = 1; 17 optional string brand = 1;
19 optional string product = 2; 18 optional string product = 2;
20 optional string version = 3; 19 optional string version = 3;
21 } 20 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698