Commit 193a454c authored by igorcov's avatar igorcov Committed by Commit bot

Default unspecified value added to enum in proto

Updated the enum in proto to be according to the rules from
https://engdoc.corp.google.com/eng/doc/devguide/proto/index.md?cl=head

BUG=722371

Review-Url: https://codereview.chromium.org/2898683002
Cr-Commit-Position: refs/heads/master@{#473862}
parent bfce5609
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment