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

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

Issue 901213003: Removing the project ID (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 "config_data.proto"; 4 import "config_data.proto";
5 import "enums.proto"; 5 import "enums.proto";
6 import "identity.proto"; 6 import "identity.proto";
7 message ClientVersion { 7 message ClientVersion {
8 optional string client = 1; 8 optional string client = 1;
9 optional string version_name = 2; 9 optional string version_name = 2;
10 optional int64 version_code = 3; 10 optional int64 version_code = 3;
11 optional string certificate_fingerprint = 4; 11 optional string certificate_fingerprint = 4;
12 optional string project_id = 5;
13 } 12 }
14 message Status { 13 message Status {
15 optional StatusCode code = 1; 14 optional StatusCode code = 1;
16 optional string message = 2; 15 optional string message = 2;
17 } 16 }
18 message PushServiceRegistration { 17 message PushServiceRegistration {
19 optional PushService service = 1; 18 optional PushService service = 1;
20 optional GcmRegistration gcm_registration = 2; 19 optional GcmRegistration gcm_registration = 2;
21 } 20 }
22 message GcmRegistration { 21 message GcmRegistration {
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 } 129 }
131 message MessageResult { 130 message MessageResult {
132 optional string published_message_id = 1; 131 optional string published_message_id = 1;
133 } 132 }
134 message SubscriptionResult { 133 message SubscriptionResult {
135 optional string subscription_id = 1; 134 optional string subscription_id = 1;
136 } 135 }
137 message OptInStateFilter { 136 message OptInStateFilter {
138 repeated OptInState allowed_opt_in_state = 1; 137 repeated OptInState allowed_opt_in_state = 1;
139 } 138 }
OLDNEW
« no previous file with comments | « chrome/common/extensions/manifest_handlers/copresence_manifest.cc ('k') | components/copresence/public/copresence_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698