blob: 0f237a83a93abfb2e03d8cc8addd44d366e94f64 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_ENCRYPTION_MIGRATION_MODE_H_
#define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_ENCRYPTION_MIGRATION_MODE_H_
namespace chromeos {
// Defines the mode of the encryption migration screen.
enum class EncryptionMigrationMode {
// Ask the user if migration should be started.
ASK_USER,
// Start migration immediately.
START_MIGRATION,
// Start minimal migration immediately.
START_MINIMAL_MIGRATION,
// Resume incomplete migration.
RESUME_MIGRATION,
// Resume minimal migration.
RESUME_MINIMAL_MIGRATION
};
} // namespace chromeos
#endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_ENCRYPTION_MIGRATION_MODE_H_