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 2330699f75581f3cf12bd73f3904791b10c27b75..d8e48b5a2c53b976940194ae22b2e1074e416597 100644 |
--- a/chrome/browser/chromeos/policy/proto/chrome_device_policy.proto |
+++ b/chrome/browser/chromeos/policy/proto/chrome_device_policy.proto |
@@ -783,10 +783,12 @@ message DeviceWallpaperImageProto { |
// the device used ecryptfs in the past. |
message DeviceEcryptfsMigrationStrategyProto { |
enum MigrationStrategy { |
+ // Default value, unspecified. |
+ UNSET = 0; |
// ARC is not allowed, no data migration needed. |
- DISALLOW_ARC = 0; |
+ DISALLOW_ARC = 1; |
// The data migration is allowed, opening the possibility to use ARC. |
- ALLOW_MIGRATION = 1; |
+ ALLOW_MIGRATION = 2; |
}; |
optional MigrationStrategy migration_strategy = 1; |