Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(219)

Side by Side Diff: chrome/browser/resources/settings/people_page/lock_screen_constants.js

Issue 2313103002: Added uma for pin unlock set up. (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 /**
6 * @fileoverview Constants used for logging the pin unlock setup uma.
7 */
8
9 /**
10 * Name of the pin unlock setup uma histogram.
11 * @type {string}
12 */
13 var PinUnlockUmaHistogramName = 'Settings.PinUnlockSetup';
jdufault 2016/09/13 18:36:05 Since you're already introducing a new file, what
sammiequon 2016/09/13 19:21:40 Done.
14
15 /**
16 * Stages the user can enter while setting up pin unlock.
17 * @enum {number}
18 */
19 var PinUnlockSetupType = {
jdufault 2016/09/13 18:36:05 Rename to LockScreenProgress?
sammiequon 2016/09/13 19:21:40 Done.
20 START_SCREEN_LOCK: 0,
21 ENTER_PASSWORD_CORRECTLY: 1,
22 CHOOSE_PIN_OR_PASSWORD: 2,
23 ENTER_PIN: 3,
24 CONFIRM_PIN: 4,
25 MAX_BUCKET: 5
26 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698