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

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

Issue 293033012: Add a device setting that indicates dev mode blocking status. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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/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 52ccfa3ef9441705cf54f39a346a05297225da1a..e3ecadacf5b91944af4d44bdf8982f311c5b8fd9 100644
--- a/chrome/browser/chromeos/policy/proto/chrome_device_policy.proto
+++ b/chrome/browser/chromeos/policy/proto/chrome_device_policy.proto
@@ -565,6 +565,14 @@ message AutoCleanupSettigsProto {
optional string clean_up_strategy = 1;
}
+// Settings that control low-level functions of the system.
+message SystemSettingsProto {
+ // Whether developer mode is allowed on the device. If the device owner sets
+ // this flag to false, the system will refuse to boot and show and error
Joao da Silva 2014/05/22 15:04:07 and show "an" error
Joao da Silva 2014/05/22 15:04:07 I think you meant "if the flag is set to true" :-)
Mattias Nissler (ping if slow) 2014/05/23 06:51:26 Done.
Mattias Nissler (ping if slow) 2014/05/23 06:51:26 Done.
+ // screen when the developer switch is turned on.
+ optional bool block_devmode = 1;
+}
+
message ChromeDeviceSettingsProto {
optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1;
optional UserWhitelistProto user_whitelist = 2;
@@ -597,4 +605,5 @@ message ChromeDeviceSettingsProto {
optional LoginScreenPowerManagementProto login_screen_power_management = 29;
optional SystemUse24HourClockProto use_24hour_clock = 30;
optional AutoCleanupSettigsProto auto_clean_up_settings = 31;
+ optional SystemSettingsProto system_settings = 32;
}

Powered by Google App Engine
This is Rietveld 408576698