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

Unified Diff: chrome/browser/chromeos/policy/proto/chrome_device_policy.proto

Issue 2466693002: [Re-land] Add network throttling as enterprise policy (Closed)
Patch Set: [Re-land] Add network throttling as enterprise policy Created 4 years, 1 month 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/chromeos/policy/proto/chrome_device_policy.proto
diff --git a/chrome/browser/chromeos/policy/proto/chrome_device_policy.proto b/chrome/browser/chromeos/policy/proto/chrome_device_policy.proto
index c513f7debc9015fe1db91befe1aed19f0f41a20e..cd8970053134878c1937356d018e04de808cb182 100644
--- a/chrome/browser/chromeos/policy/proto/chrome_device_policy.proto
+++ b/chrome/browser/chromeos/policy/proto/chrome_device_policy.proto
@@ -743,6 +743,12 @@ message LoginVideoCaptureAllowedUrlsProto {
repeated string urls = 1;
}
+message NetworkThrottlingEnabledProto {
+ optional bool enabled = 1 [default = false];
+ optional int32 upload_rate_kbits = 2 [default = 0];
+ optional int32 download_rate_kbits = 3 [default = 0];
+}
+
// A list of app-ids to install from the webstore on the login page.
message LoginAppsProto {
repeated string login_apps = 1;
@@ -801,4 +807,5 @@ message ChromeDeviceSettingsProto {
optional LoginVideoCaptureAllowedUrlsProto login_video_capture_allowed_urls =
45;
optional LoginAppsProto login_apps = 46;
+ optional NetworkThrottlingEnabledProto network_throttling = 47;
}

Powered by Google App Engine
This is Rietveld 408576698