| 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 // Logging information for Android "checkin" events (automatic, periodic | 5 // Logging information for Android "checkin" events (automatic, periodic |
| 6 // requests made by Android devices to the server). | 6 // requests made by Android devices to the server). |
| 7 | 7 |
| 8 syntax = "proto2"; | 8 syntax = "proto2"; |
| 9 | 9 |
| 10 option optimize_for = LITE_RUNTIME; | 10 option optimize_for = LITE_RUNTIME; |
| 11 option retain_unknown_fields = true; | |
| 12 package checkin_proto; | 11 package checkin_proto; |
| 13 | 12 |
| 14 // Build characteristics unique to the Chrome browser, and Chrome OS | 13 // Build characteristics unique to the Chrome browser, and Chrome OS |
| 15 message ChromeBuildProto { | 14 message ChromeBuildProto { |
| 16 enum Platform { | 15 enum Platform { |
| 17 PLATFORM_WIN = 1; | 16 PLATFORM_WIN = 1; |
| 18 PLATFORM_MAC = 2; | 17 PLATFORM_MAC = 2; |
| 19 PLATFORM_LINUX = 3; | 18 PLATFORM_LINUX = 3; |
| 20 PLATFORM_CROS = 4; | 19 PLATFORM_CROS = 4; |
| 21 PLATFORM_IOS = 5; | 20 PLATFORM_IOS = 5; |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 | 87 |
| 89 // Apple IOS device | 88 // Apple IOS device |
| 90 DEVICE_IOS_OS = 2; | 89 DEVICE_IOS_OS = 2; |
| 91 | 90 |
| 92 // Chrome browser - Not Chrome OS. No hardware records. | 91 // Chrome browser - Not Chrome OS. No hardware records. |
| 93 DEVICE_CHROME_BROWSER = 3; | 92 DEVICE_CHROME_BROWSER = 3; |
| 94 | 93 |
| 95 // Chrome OS | 94 // Chrome OS |
| 96 DEVICE_CHROME_OS = 4; | 95 DEVICE_CHROME_OS = 4; |
| 97 } | 96 } |
| OLD | NEW |