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

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: Add test. 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..c367f52e8bcb8ca816555e8807516524fa50d513 100644
--- a/chrome/browser/policy/proto/cloud/device_management_backend.proto
+++ b/chrome/browser/policy/proto/cloud/device_management_backend.proto
@@ -359,6 +359,18 @@ message DeviceLocation {
optional string error_message = 10;
}
+// Details about a network interface.
+message NetworkInterface {
+ // String describing the interface type.
pneubeck (no reviews) 2013/07/04 15:51:48 This should refer to the list of possible strings.
Mattias Nissler (ping if slow) 2013/07/11 17:41:46 Made an enum and translation table instead.
+ optional string type = 1;
Bin 2013/07/10 18:02:49 Once we start collecting network interface address
Mattias Nissler (ping if slow) 2013/07/11 17:41:46 Made an enum.
+
+ // MAC address (if applicable) of the corresponding network device.
Bin 2013/07/10 18:02:49 There are three MAC address formats: MM:MM:MM:SS:
Mattias Nissler (ping if slow) 2013/07/11 17:41:46 Done.
+ optional string mac_address = 2;
pneubeck (no reviews) 2013/07/04 15:51:48 encoding of the MAC address?
Mattias Nissler (ping if slow) 2013/07/11 17:41:46 Done.
+
+ // MEID (if applicable) of the corresponding network device.
+ optional string meid = 3;
Bin 2013/07/10 18:02:49 If I remember correctly, MEID is used for CDMA dev
Mattias Nissler (ping if slow) 2013/07/11 17:41:46 I added a separate field for IMEI, so you have wha
+}
+
// Report device level status.
message DeviceStatusReportRequest {
// The OS version reported by the device is a platform version
@@ -383,6 +395,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.

Powered by Google App Engine
This is Rietveld 408576698