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

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

Issue 2544693002: [Chrome OS] Add a chrome os device wallpaper policy. (Closed)
Patch Set: Address pastarmovj@'s comments. Created 4 years 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 736 matching lines...) Expand 10 before | Expand all | Expand 10 after
747 optional bool enabled = 1 [default = false]; 747 optional bool enabled = 1 [default = false];
748 optional int32 upload_rate_kbits = 2 [default = 0]; 748 optional int32 upload_rate_kbits = 2 [default = 0];
749 optional int32 download_rate_kbits = 3 [default = 0]; 749 optional int32 download_rate_kbits = 3 [default = 0];
750 } 750 }
751 751
752 // 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.
753 message LoginAppsProto { 753 message LoginAppsProto {
754 repeated string login_apps = 1; 754 repeated string login_apps = 1;
755 } 755 }
756 756
757 // The url and hash that specified in JSON format that can be used to set the
758 // device-level wallpaper on the login screen before any user logs in.
759 message DeviceWallpaperImageProto {
760 optional string device_wallpaper_image = 1;
761 }
762
757 message ChromeDeviceSettingsProto { 763 message ChromeDeviceSettingsProto {
758 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; 764 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1;
759 optional UserWhitelistProto user_whitelist = 2; 765 optional UserWhitelistProto user_whitelist = 2;
760 optional GuestModeEnabledProto guest_mode_enabled = 3; 766 optional GuestModeEnabledProto guest_mode_enabled = 3;
761 optional OBSOLETE_DeviceProxySettingsProto device_proxy_settings = 4 767 optional OBSOLETE_DeviceProxySettingsProto device_proxy_settings = 4
762 [deprecated = true]; 768 [deprecated = true];
763 optional CameraEnabledProto camera_enabled = 5; 769 optional CameraEnabledProto camera_enabled = 5;
764 optional ShowUserNamesOnSigninProto show_user_names = 6; 770 optional ShowUserNamesOnSigninProto show_user_names = 6;
765 optional DataRoamingEnabledProto data_roaming_enabled = 7; 771 optional DataRoamingEnabledProto data_roaming_enabled = 7;
766 optional AllowNewUsersProto allow_new_users = 8; 772 optional AllowNewUsersProto allow_new_users = 8;
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
801 optional AllowKioskAppControlChromeVersionProto 807 optional AllowKioskAppControlChromeVersionProto
802 allow_kiosk_app_control_chrome_version = 40; 808 allow_kiosk_app_control_chrome_version = 40;
803 optional LoginAuthenticationBehaviorProto login_authentication_behavior = 41; 809 optional LoginAuthenticationBehaviorProto login_authentication_behavior = 41;
804 optional UsbDetachableWhitelistProto usb_detachable_whitelist = 42; 810 optional UsbDetachableWhitelistProto usb_detachable_whitelist = 42;
805 optional AllowBluetoothProto allow_bluetooth = 43; 811 optional AllowBluetoothProto allow_bluetooth = 43;
806 optional DeviceQuirksDownloadEnabledProto quirks_download_enabled = 44; 812 optional DeviceQuirksDownloadEnabledProto quirks_download_enabled = 44;
807 optional LoginVideoCaptureAllowedUrlsProto login_video_capture_allowed_urls = 813 optional LoginVideoCaptureAllowedUrlsProto login_video_capture_allowed_urls =
808 45; 814 45;
809 optional LoginAppsProto login_apps = 46; 815 optional LoginAppsProto login_apps = 46;
810 optional NetworkThrottlingEnabledProto network_throttling = 47; 816 optional NetworkThrottlingEnabledProto network_throttling = 47;
817 optional DeviceWallpaperImageProto device_wallpaper_image = 48;
811 } 818 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698