Chromium Code Reviews| Index: chrome/browser/policy/proto/chrome_device_policy.proto |
| diff --git a/chrome/browser/policy/proto/chrome_device_policy.proto b/chrome/browser/policy/proto/chrome_device_policy.proto |
| index fe5325195e47721ea047fd26bf23cf71a1b42fe9..b99314f44d037c83a42a775c269f4adfc626eee0 100644 |
| --- a/chrome/browser/policy/proto/chrome_device_policy.proto |
| +++ b/chrome/browser/policy/proto/chrome_device_policy.proto |
| @@ -160,6 +160,12 @@ message AutoUpdateSettingsProto { |
| optional string target_version_prefix = 2; |
| } |
| +message StartUpUrlsProto { |
| + // Specifies the URLs to be loaded on login to the anonymous account used if |
|
Joao da Silva
2012/03/16 15:55:18
Nitty nit: double spaces before the "if"
pastarmovj
2012/03/19 14:20:49
Done.
|
| + // the device is in KIOSK mode. |
| + repeated string start_up_urls = 1; |
| +} |
| + |
| message ChromeDeviceSettingsProto { |
| optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; |
| optional UserWhitelistProto user_whitelist = 2; |
| @@ -178,4 +184,5 @@ message ChromeDeviceSettingsProto { |
| optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; |
| optional ScreenSaverProto login_screen_saver = 16; |
| optional AutoUpdateSettingsProto auto_update_settings = 17; |
| + optional StartUpUrlsProto start_up_urls = 18; |
| } |