Move pref backing up flags from local state to device settings on ChromeOS.

BUG=chromium-os:39250
TEST=Existing unit and browser tests should pass.


Review URL: https://chromiumcodereview.appspot.com/12452003

git-svn-id: http://src.chromium.org/svn/trunk/src/chrome/browser/policy/proto@186837 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
diff --git a/chrome_device_policy.proto b/chrome_device_policy.proto
index 4cd0058..2ed7933 100644
--- a/chrome_device_policy.proto
+++ b/chrome_device_policy.proto
@@ -245,6 +245,12 @@
   optional bool allow_redeem_offers = 1 [default = true];
 }
 
+message StartUpFlagsProto {
+  // The list of flags to be applied to chrome on start-up (back up store for
+  // owner set flags in about:flags).
+  repeated string flags = 1;
+}
+
 message ChromeDeviceSettingsProto {
   optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1;
   optional UserWhitelistProto user_whitelist = 2;
@@ -268,4 +274,5 @@
   optional SystemTimezoneProto system_timezone = 20;
   optional DeviceLocalAccountsProto device_local_accounts = 21;
   optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22;
+  optional StartUpFlagsProto start_up_flags = 23;
 }