blob: 4c7317524089b4e3be169a4c8c7f25c5cff8fbab [file] [log] [blame]
// Copyright 2014 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_ASH_RESET_METRICS_H_
#define CHROME_BROWSER_ASH_RESET_METRICS_H_
namespace ash {
namespace reset {
enum class DialogViewType {
// User invoked the dialog from options page.
kFromOptions,
// Invoked with shortcut. Confirming form for powerwash.
kShortcutConfirmingPowerwashOnly,
// Invoked with shortcut. Confirming form for powerwash and rollback.
kShortcutConfirmingPowerwashAndRollback,
// Invoked with shortcut. Offering form, rollback option set.
kShortcutOfferingRollbackUnavailable,
// Invoked with shortcut. Offering form, rollback option not set.
kShortcutOfferingRollbackAvailable,
// Invoked with shortcut. Requesting restart form.
kShortcutRestartRequired,
// Must be last enum element.
kCount
};
} // namespace reset
} // namespace ash
#endif // CHROME_BROWSER_ASH_RESET_METRICS_H_