| 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;
|
| }
|
|
|