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

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

Issue 469883002: Using API key specified from js (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing API build 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
« no previous file with comments | « components/copresence/DEPS ('k') | components/copresence/proto/enums.proto » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 import "identity.proto"; 5 import "identity.proto";
6 message ClientVersion { 6 message ClientVersion {
7 optional string client = 1; 7 optional string client = 1;
8 optional string version_name = 2; 8 optional string version_name = 2;
9 optional int64 version_code = 3; 9 optional int64 version_code = 3;
10 optional string certificate_fingerprint = 4; 10 optional string certificate_fingerprint = 4;
(...skipping 11 matching lines...) Expand all
22 optional Identity registrant = 3; 22 optional Identity registrant = 3;
23 } 23 }
24 message Token { 24 message Token {
25 message Debug { 25 message Debug {
26 repeated string email = 2; 26 repeated string email = 2;
27 } 27 }
28 optional string id = 1; 28 optional string id = 1;
29 optional TokenStatus status = 3; 29 optional TokenStatus status = 3;
30 optional Debug debug = 4; 30 optional Debug debug = 4;
31 } 31 }
32 message DeviceFingerprint {
33 optional string manufacturer = 1;
34 optional string model = 2;
35 optional PlatformType type = 3;
36 optional string platform_version = 4;
37 }
32 message TokenTechnology { 38 message TokenTechnology {
33 optional TokenMedium medium = 1; 39 optional TokenMedium medium = 1;
34 repeated TokenInstructionType instruction_type = 2; 40 repeated TokenInstructionType instruction_type = 2;
35 } 41 }
36 message DeviceCapabilities { 42 message DeviceCapabilities {
37 repeated TokenTechnology token_technology = 2; 43 repeated TokenTechnology token_technology = 2;
38 } 44 }
39 message TokenInstruction { 45 message TokenInstruction {
40 optional TokenInstructionType token_instruction_type = 1; 46 optional TokenInstructionType token_instruction_type = 1;
41 optional TokenMedium medium = 2; 47 optional TokenMedium medium = 2;
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 } 130 }
125 message MessageResult { 131 message MessageResult {
126 optional string published_message_id = 1; 132 optional string published_message_id = 1;
127 } 133 }
128 message SubscriptionResult { 134 message SubscriptionResult {
129 optional string subscription_id = 1; 135 optional string subscription_id = 1;
130 } 136 }
131 message OptInStateFilter { 137 message OptInStateFilter {
132 repeated OptInState allowed_opt_in_state = 1; 138 repeated OptInState allowed_opt_in_state = 1;
133 } 139 }
OLDNEW
« no previous file with comments | « components/copresence/DEPS ('k') | components/copresence/proto/enums.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698