summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/chromeos/login/host-pairing-screen.js
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/chrome/browser/resources/chromeos/login/host-pairing-screen.js')
-rw-r--r--chromium/chrome/browser/resources/chromeos/login/host-pairing-screen.js38
1 files changed, 0 insertions, 38 deletions
diff --git a/chromium/chrome/browser/resources/chromeos/login/host-pairing-screen.js b/chromium/chrome/browser/resources/chromeos/login/host-pairing-screen.js
deleted file mode 100644
index 25baa321650..00000000000
--- a/chromium/chrome/browser/resources/chromeos/login/host-pairing-screen.js
+++ /dev/null
@@ -1,38 +0,0 @@
-// 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.
-
-Polymer({
- is: 'host-pairing-page',
-
- behaviors: [Polymer.NeonAnimatableBehavior]
-});
-
-Polymer((function() {
- 'use strict';
-
- /** @const */ var CALLBACK_CONTEXT_READY = 'contextReady';
-
- return {
- is: 'host-pairing-screen',
-
- behaviors: [login.OobeScreenBehavior],
-
- onBeforeShow: function() {
- Oobe.getInstance().headerHidden = true;
- },
-
- /** @override */
- initialize: function() {
- ['code',
- 'deviceName',
- 'enrollmentDomain',
- 'page'].forEach(this.registerBoundContextField, this);
- this.send(CALLBACK_CONTEXT_READY);
- },
-
- getEnrollmentStepTitle_: function(enrollmentDomain) {
- return this.i18n(['enrollingTitle', enrollmentDomain]);
- }
- };
-})());