| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |