Add a stub __cxa_demangle to disable LLVM's demangler.
[chromium-blink-merge.git] / components / copresence / proto / identity.proto
blob6c104edd2e086eb8fad2d514bc50fef108e55728
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;
12 message DeviceIdentity {
13   optional Identity identity = 1;
14   optional DeviceVersion version = 2;
16 message DeviceVersion {
17   optional string brand = 1;
18   optional string product = 2;
19   optional string version = 3;