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

Side by Side Diff: chrome/browser/chromeos/policy/proto/chrome_device_policy.proto

Issue 2364703002: Add network throttling as an enterprise policy (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add network bandwidth throttling as an enterprise policy Created 4 years, 2 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 syntax = "proto2"; 5 syntax = "proto2";
6 6
7 option optimize_for = LITE_RUNTIME; 7 option optimize_for = LITE_RUNTIME;
8 8
9 package enterprise_management; 9 package enterprise_management;
10 10
(...skipping 725 matching lines...) Expand 10 before | Expand all | Expand 10 after
736 optional bool quirks_download_enabled = 1; 736 optional bool quirks_download_enabled = 1;
737 } 737 }
738 738
739 // A list of security origins for SAML login pages that are allowed to 739 // A list of security origins for SAML login pages that are allowed to
740 // access the webcam. No login pages will be allowed to access the 740 // access the webcam. No login pages will be allowed to access the
741 // webcam if the list is empty. 741 // webcam if the list is empty.
742 message LoginVideoCaptureAllowedUrlsProto { 742 message LoginVideoCaptureAllowedUrlsProto {
743 repeated string urls = 1; 743 repeated string urls = 1;
744 } 744 }
745 745
746 message NetworkThrottlingEnabledProto {
747 optional bool enabled = 1 [default = false];
748 optional int32 upload_rate_kbits = 2 [default = 0];
749 optional int32 download_rate_kbits = 3 [default = 0];
750 }
751
746 // A list of app-ids to install from the webstore on the login page. 752 // A list of app-ids to install from the webstore on the login page.
747 message LoginAppsProto { 753 message LoginAppsProto {
748 repeated string login_apps = 1; 754 repeated string login_apps = 1;
749 } 755 }
750 756
751 message ChromeDeviceSettingsProto { 757 message ChromeDeviceSettingsProto {
752 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; 758 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1;
753 optional UserWhitelistProto user_whitelist = 2; 759 optional UserWhitelistProto user_whitelist = 2;
754 optional GuestModeEnabledProto guest_mode_enabled = 3; 760 optional GuestModeEnabledProto guest_mode_enabled = 3;
755 optional OBSOLETE_DeviceProxySettingsProto device_proxy_settings = 4 761 optional OBSOLETE_DeviceProxySettingsProto device_proxy_settings = 4
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
794 optional DisplayRotationDefaultProto display_rotation_default = 39; 800 optional DisplayRotationDefaultProto display_rotation_default = 39;
795 optional AllowKioskAppControlChromeVersionProto 801 optional AllowKioskAppControlChromeVersionProto
796 allow_kiosk_app_control_chrome_version = 40; 802 allow_kiosk_app_control_chrome_version = 40;
797 optional LoginAuthenticationBehaviorProto login_authentication_behavior = 41; 803 optional LoginAuthenticationBehaviorProto login_authentication_behavior = 41;
798 optional UsbDetachableWhitelistProto usb_detachable_whitelist = 42; 804 optional UsbDetachableWhitelistProto usb_detachable_whitelist = 42;
799 optional AllowBluetoothProto allow_bluetooth = 43; 805 optional AllowBluetoothProto allow_bluetooth = 43;
800 optional DeviceQuirksDownloadEnabledProto quirks_download_enabled = 44; 806 optional DeviceQuirksDownloadEnabledProto quirks_download_enabled = 44;
801 optional LoginVideoCaptureAllowedUrlsProto login_video_capture_allowed_urls = 807 optional LoginVideoCaptureAllowedUrlsProto login_video_capture_allowed_urls =
802 45; 808 45;
803 optional LoginAppsProto login_apps = 46; 809 optional LoginAppsProto login_apps = 46;
810 optional NetworkThrottlingEnabledProto network_throttling = 47;
804 } 811 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698