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

Side by Side Diff: google_apis/gcm/protocol/checkin.proto

Issue 2291053002: Cleanup: remove non-standard retain_unknown_fields from .proto files (Closed)
Patch Set: Created 4 years, 3 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 | « google_apis/gcm/protocol/android_checkin.proto ('k') | google_apis/gcm/protocol/mcs.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 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 // 4 //
5 // Request and reply to the "checkin server" devices poll every few hours. 5 // Request and reply to the "checkin server" devices poll every few hours.
6 6
7 syntax = "proto2"; 7 syntax = "proto2";
8 8
9 option optimize_for = LITE_RUNTIME; 9 option optimize_for = LITE_RUNTIME;
10 option retain_unknown_fields = true;
11 10
12 package checkin_proto; 11 package checkin_proto;
13 12
14 import "android_checkin.proto"; 13 import "android_checkin.proto";
15 14
16 // A concrete name/value pair sent to the device's Gservices database. 15 // A concrete name/value pair sent to the device's Gservices database.
17 message GservicesSetting { 16 message GservicesSetting {
18 required bytes name = 1; 17 required bytes name = 1;
19 required bytes value = 2; 18 required bytes value = 2;
20 } 19 }
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 repeated GservicesSetting setting = 5; 146 repeated GservicesSetting setting = 5;
148 147
149 optional bool market_ok = 6; // If Market got the market_checkin data OK. 148 optional bool market_ok = 6; // If Market got the market_checkin data OK.
150 149
151 optional fixed64 android_id = 7; // From the request, or newly assigned 150 optional fixed64 android_id = 7; // From the request, or newly assigned
152 optional fixed64 security_token = 8; // The associated security token 151 optional fixed64 security_token = 8; // The associated security token
153 152
154 optional string version_info = 11; 153 optional string version_info = 11;
155 // NEXT TAG: 12 154 // NEXT TAG: 12
156 } 155 }
OLDNEW
« no previous file with comments | « google_apis/gcm/protocol/android_checkin.proto ('k') | google_apis/gcm/protocol/mcs.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698