| Index: chrome/browser/resources/settings/people_page/fingerprint_list.js
|
| diff --git a/chrome/browser/resources/settings/people_page/fingerprint_list.js b/chrome/browser/resources/settings/people_page/fingerprint_list.js
|
| index 2fbc3d8a1d1a1d6819aba51ac95884faff32c1d7..d6c142e086815f5ec6904485d1999fbc3ebaf9be 100644
|
| --- a/chrome/browser/resources/settings/people_page/fingerprint_list.js
|
| +++ b/chrome/browser/resources/settings/people_page/fingerprint_list.js
|
| @@ -62,10 +62,10 @@ Polymer({
|
| * @protected
|
| */
|
| currentRouteChanged: function(newRoute, oldRoute) {
|
| - if (newRoute != settings.Route.FINGERPRINT) {
|
| + if (newRoute != settings.routes.FINGERPRINT) {
|
| if (this.browserProxy_)
|
| this.browserProxy_.endCurrentAuthentication();
|
| - } else if (oldRoute == settings.Route.LOCK_SCREEN) {
|
| + } else if (oldRoute == settings.routes.LOCK_SCREEN) {
|
| // Start fingerprint authentication when going from LOCK_SCREEN to
|
| // FINGERPRINT page.
|
| this.browserProxy_.startAuthentication();
|
| @@ -166,7 +166,7 @@ Polymer({
|
| */
|
| onScreenLocked_: function(screenIsLocked) {
|
| if (!screenIsLocked &&
|
| - settings.getCurrentRoute() == settings.Route.FINGERPRINT) {
|
| + settings.getCurrentRoute() == settings.routes.FINGERPRINT) {
|
| this.onSetupFingerprintDialogClose_();
|
| }
|
| },
|
|
|