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

Unified Diff: chrome/browser/policy/proto/cloud/device_management_backend.proto

Issue 18348016: If requested, report network interfaces to management server. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Finishing touches. Created 7 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/policy/proto/cloud/device_management_backend.proto
diff --git a/chrome/browser/policy/proto/cloud/device_management_backend.proto b/chrome/browser/policy/proto/cloud/device_management_backend.proto
index 2d1e856dab3db5dcb64038b84325ff150004ef80..c92152f2acc6a8cfce62ab0ebd0c07d1837682eb 100644
--- a/chrome/browser/policy/proto/cloud/device_management_backend.proto
+++ b/chrome/browser/policy/proto/cloud/device_management_backend.proto
@@ -359,6 +359,33 @@ message DeviceLocation {
optional string error_message = 10;
}
+// Details about a network interface.
+message NetworkInterface {
+ // Indicates the type of network device.
+ enum NetworkDeviceType {
+ TYPE_ETHERNET = 0;
+ TYPE_WIFI = 1;
+ TYPE_WIMAX = 2;
+ TYPE_BLUETOOTH = 3;
+ TYPE_CELLULAR = 4;
+ }
+
+ // Network device type.
+ optional NetworkDeviceType type = 1;
+
+ // MAC address (if applicable) of the corresponding network device. This is
+ // formatted as an ASCII string with 12 hex digits. Example: A0B1C2D3E4F5.
+ optional string mac_address = 2;
+
+ // MEID (if applicable) of the corresponding network device. Formatted as
+ // ASCII string composed of 14 hex digits. Example: A10000009296F2.
+ optional string meid = 3;
+
+ // IMEI (if applicable) of the corresponding network device. 15-16 decimal
+ // digits encoded as ASCII string. Example: 355402040158759.
+ optional string imei = 4;
+}
+
// Report device level status.
message DeviceStatusReportRequest {
// The OS version reported by the device is a platform version
@@ -383,6 +410,9 @@ message DeviceStatusReportRequest {
// The device location.
optional DeviceLocation device_location = 7;
+
+ // List of network interfaces.
+ repeated NetworkInterface network_interface = 8;
}
// Report session (a user on one device) level status.
« no previous file with comments | « chrome/browser/policy/proto/chromeos/chrome_device_policy.proto ('k') | chrome/test/data/policy/policy_test_cases.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698