Commit 7e64b8f5 authored by Jit Yao Yap's avatar Jit Yao Yap Committed by Commit Bot

[protosync] Server-side -> client

Sync server-side changes from cl/320034367.

Change-Id: I16909359e462681ec2a3b1b7a7be8ef2730c60b7
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2294659Reviewed-by: default avatarMaksim Ivanov <emaxx@chromium.org>
Commit-Queue: Jit Yao Yap <jityao@google.com>
Cr-Commit-Position: refs/heads/master@{#788500}
parent 107d9eb5
......@@ -341,6 +341,14 @@ message DeviceServiceApiAccessResponse {
optional string auth_code = 1;
}
// Device Identifier for non-Chrome OS platform.
message BrowserDeviceIdentifier {
// Name of the computer.
optional string computer_name = 1;
// Device serial number (definition depending on the platform).
optional string serial_number = 2;
}
message PolicyFetchRequest {
reserved 5;
......@@ -422,6 +430,9 @@ message PolicyFetchRequest {
// If this is an affiliated user, this is the device's DMToken.
optional string device_dm_token = 12;
// Device identifier for helping identify non-Chrome OS devices.
optional BrowserDeviceIdentifier browser_device_identifier = 13;
}
// This message customizes how the device behaves when it is disabled by its
......@@ -1806,6 +1817,8 @@ message ChromeDesktopReportRequest {
optional OSReport os_report = 7;
// A string contains OS user name.
optional string os_user_name = 8;
// Device identifier for helping identify non-Chrome OS devices.
optional BrowserDeviceIdentifier browser_device_identifier = 9;
}
// Report user level status on Chrome OS platform. Chrome OS equivalent of
......@@ -2542,6 +2555,8 @@ message RegisterBrowserRequest {
optional string os_platform = 2;
// Platform specific version number, e.g., 6.1.7601.0 or 10.12.6
optional string os_version = 3;
// Device identifier for helping identify non-Chrome OS devices.
optional BrowserDeviceIdentifier browser_device_identifier = 4;
}
// Gets an enrollment token to a managed Google Play account for using it with
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment