Index: chrome/browser/resources/chromeos/login/host-pairing-screen.js |
diff --git a/chrome/browser/resources/chromeos/login/host-pairing-screen.js b/chrome/browser/resources/chromeos/login/host-pairing-screen.js |
index 8e08a44c25e8e998c81c0a06aec5a62539eb7eec..e186606119349fb470e082da2d8b2a01c055e969 100644 |
--- a/chrome/browser/resources/chromeos/login/host-pairing-screen.js |
+++ b/chrome/browser/resources/chromeos/login/host-pairing-screen.js |
@@ -24,11 +24,8 @@ Polymer((function() { |
/** @override */ |
initialize: function() { |
- ['code', |
- 'deviceName', |
- 'enrollmentDomain', |
- 'page', |
- 'enrollmentError'].forEach(this.registerBoundContextField, this); |
+ ['code', 'deviceName', 'enrollmentDomain', 'page', 'enrollmentError'] |
+ .forEach(this.registerBoundContextField, this); |
this.send(CALLBACK_CONTEXT_READY); |
}, |
@@ -37,8 +34,8 @@ Polymer((function() { |
}, |
getEnrollmentStepTitle_: function(enrollmentDomain) { |
- return this.i18n(['loginHostPairingScreenEnrollingTitle', |
- enrollmentDomain]); |
+ return this.i18n( |
+ ['loginHostPairingScreenEnrollingTitle', enrollmentDomain]); |
} |
}; |
})()); |