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

Unified Diff: chrome/browser/resources/settings/route.js

Issue 2208473007: Rework quick unlock settings to follow new specs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Fix closure (bad merge) Created 4 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/settings/route.js
diff --git a/chrome/browser/resources/settings/route.js b/chrome/browser/resources/settings/route.js
index 096b3c13c9ecc79ea540eec75d273a1504609128..db4a0ffb92eaa9d9605a874324b68f12c8860f96 100644
--- a/chrome/browser/resources/settings/route.js
+++ b/chrome/browser/resources/settings/route.js
@@ -121,16 +121,9 @@ cr.define('settings', function() {
</if>
<if expr="chromeos">
r.CHANGE_PICTURE = r.PEOPLE.createChild('/changePicture', 'changePicture');
- r.QUICK_UNLOCK_AUTHENTICATE =
- r.PEOPLE.createChild('/quickUnlock/authenticate',
- 'quick-unlock-authenticate');
- r.QUICK_UNLOCK_CHOOSE_METHOD =
- r.PEOPLE.createChild('/quickUnlock/chooseMethod',
- 'quick-unlock-choose-method');
- r.QUICK_UNLOCK_SETUP_PIN =
- r.QUICK_UNLOCK_CHOOSE_METHOD.createChild('/quickUnlock/setupPin',
- 'quick-unlock-setup-pin');
r.ACCOUNTS = r.PEOPLE.createChild('/accounts', 'users');
+ r.LOCK_SCREEN = r.PEOPLE.createChild('/lockScreen', 'lockScreen');
+ r.SETUP_PIN = r.LOCK_SCREEN.createDialog('/setupPin', 'setupPin');
r.DEVICE = r.BASIC.createSection('/device', 'device');
r.POINTERS = r.DEVICE.createChild('/pointer-overlay', 'pointers');

Powered by Google App Engine
This is Rietveld 408576698