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

Unified Diff: components/copresence/proto/identity.proto

Issue 419073002: Add the copresence DirectiveHandler. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
Index: components/copresence/proto/identity.proto
diff --git a/components/copresence/proto/identity.proto b/components/copresence/proto/identity.proto
new file mode 100644
index 0000000000000000000000000000000000000000..c89f6619f8303943ec180fe49b3d7773304c1103
--- /dev/null
+++ b/components/copresence/proto/identity.proto
@@ -0,0 +1,21 @@
+syntax = "proto2";
+package copresence;
+option optimize_for = LITE_RUNTIME;
+import "enums.proto";
+message Identity {
+ optional IdentityType type = 1;
+ optional string obfuscated_gaia_id = 2 [deprecated = true];
+ optional string chromecast_id = 3;
+ optional string android_id = 4;
+ optional string chrome_id = 5;
+ optional int64 gaia_id = 6;
+}
+message DeviceIdentity {
+ optional Identity identity = 1;
+ optional DeviceVersion version = 2;
+}
+message DeviceVersion {
+ optional string brand = 1;
+ optional string product = 2;
+ optional string version = 3;
+}

Powered by Google App Engine
This is Rietveld 408576698