| OLD | NEW |
| 1 <!-- Copyright 2015 The Chromium Authors. All rights reserved. | 1 <!-- Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 Use of this source code is governed by a BSD-style license that can be | 2 Use of this source code is governed by a BSD-style license that can be |
| 3 found in the LICENSE file. --> | 3 found in the LICENSE file. --> |
| 4 | 4 |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-iconset-svg/iron-i
conset-svg.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-iconset-svg/iron-i
conset-svg.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/fade-in-animation.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/fade-in-animation.html"> |
| 9 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/fade-out-animation.html"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/fade-out-animation.html"> |
| 10 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable-behavior.html"> | 10 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable-behavior.html"> |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 </dom-module> | 38 </dom-module> |
| 39 | 39 |
| 40 <dom-module name="host-pairing-screen"> | 40 <dom-module name="host-pairing-screen"> |
| 41 | 41 |
| 42 <link rel="stylesheet" href="oobe_screen_host_pairing.css"> | 42 <link rel="stylesheet" href="oobe_screen_host_pairing.css"> |
| 43 | 43 |
| 44 <template> | 44 <template> |
| 45 <neon-animated-pages attr-for-selected="name" selected="[[C.page]]" | 45 <neon-animated-pages attr-for-selected="name" selected="[[C.page]]" |
| 46 entry-animation="fade-in-animation" exit-animation="fade-out-animation"> | 46 entry-animation="fade-in-animation" exit-animation="fade-out-animation"> |
| 47 <host-pairing-page name="welcome"> | 47 <host-pairing-page name="welcome"> |
| 48 <div class="title" i18n-content="login_HostPairingScreen_welcomeTitle"> | 48 <div class="title" i18n-content="loginHostPairingScreenWelcomeTitle"> |
| 49 </div> | 49 </div> |
| 50 <div i18n-content="login_HostPairingScreen_welcomeText"></div> | 50 <div i18n-content="loginHostPairingScreenWelcomeText"></div> |
| 51 </host-pairing-page> | 51 </host-pairing-page> |
| 52 <host-pairing-page name="code-confirmation"> | 52 <host-pairing-page name="code-confirmation"> |
| 53 <div class="title" | 53 <div class="title" |
| 54 i18n-content="login_HostPairingScreen_confirmationTitle"> | 54 i18n-content="loginHostPairingScreenConfirmationTitle"> |
| 55 </div> | 55 </div> |
| 56 <div id="code">{{C.code}}</div> | 56 <div id="code">{{C.code}}</div> |
| 57 </host-pairing-page> | 57 </host-pairing-page> |
| 58 <host-pairing-page name="setup-basic-configuration"> |
| 59 <div class="title" |
| 60 i18n-content="loginHostPairingScreenSetupBasicConfigTitle"> |
| 61 </div> |
| 62 </host-pairing-page> |
| 63 <host-pairing-page name="setup-network-error"> |
| 64 <div class="title" |
| 65 i18n-content="loginHostPairingScreenSetupNetworkErrorTitle"> |
| 66 </div> |
| 67 </host-pairing-page> |
| 58 <host-pairing-page name="update"> | 68 <host-pairing-page name="update"> |
| 59 <div class="title" i18n-content="login_HostPairingScreen_updatingTitle"> | 69 <div class="title" i18n-content="loginHostPairingScreenUpdatingTitle"> |
| 60 </div> | 70 </div> |
| 61 </host-pairing-page> | 71 </host-pairing-page> |
| 62 <host-pairing-page name="enrollment-introduction"> | 72 <host-pairing-page name="enrollment-introduction"> |
| 63 <div class="title" i18n-content="login_HostPairingScreen_enrollTitle"> | 73 <div class="title" i18n-content="loginHostPairingScreenEnrollTitle"> |
| 64 </div> | 74 </div> |
| 65 </host-pairing-page> | 75 </host-pairing-page> |
| 66 <host-pairing-page name="enrollment"> | 76 <host-pairing-page name="enrollment"> |
| 67 <div class="title"> | 77 <div class="title"> |
| 68 <!-- 'enrollmentTitle' contains <strong> tag. We need to wrap it in | 78 <!-- 'enrollmentTitle' contains <strong> tag. We need to wrap it in |
| 69 'html-echo' to prevent HTML escaping. --> | 79 'html-echo' to prevent HTML escaping. --> |
| 70 <html-echo content="[[getEnrollmentStepTitle_(C.enrollmentDomain)]]"> | 80 <html-echo content="[[getEnrollmentStepTitle_(C.enrollmentDomain)]]"> |
| 71 </html-echo> | 81 </html-echo> |
| 72 </div> | 82 </div> |
| 73 </host-pairing-page> | 83 </host-pairing-page> |
| 74 <host-pairing-page name="enrollment-error"> | 84 <host-pairing-page name="enrollment-error"> |
| 75 <div class="title" | 85 <div class="title" |
| 76 i18n-content="login_HostPairingScreen_enrollmentErrorTitle"> | 86 i18n-content="loginHostPairingScreenEnrollmentErrorTitle"> |
| 77 </div> | 87 </div> |
| 78 <div i18n-content="login_HostPairingScreen_errorNeedsRestart"></div> | 88 <div i18n-content="loginHostPairingScreenErrorNeedsRestart"></div> |
| 79 </host-pairing-page> | 89 </host-pairing-page> |
| 80 <host-pairing-page name="pairing-done"> | 90 <host-pairing-page name="pairing-done"> |
| 81 <div class="title" i18n-content="login_HostPairingScreen_doneTitle"> | 91 <div class="title" i18n-content="loginHostPairingScreenDoneTitle"> |
| 82 </div> | 92 </div> |
| 83 <div i18n-content="login_HostPairingScreen_doneText"></div> | 93 <div i18n-content="loginHostPairingScreenDoneText"></div> |
| 84 </host-pairing-page> | 94 </host-pairing-page> |
| 85 </neon-animated-pages> | 95 </neon-animated-pages> |
| 86 <paper-icon-item id="device-indicator"> | 96 <paper-icon-item id="device-indicator"> |
| 87 <iron-icon icon="host-pairing-icons:cast" item-icon></iron-icon> | 97 <iron-icon icon="host-pairing-icons:cast" item-icon></iron-icon> |
| 88 <div id="device-label">{{C.deviceName}}</div> | 98 <div id="device-label">{{C.deviceName}}</div> |
| 89 </paper-icon-item> | 99 </paper-icon-item> |
| 90 <div id="illustration"></div> | 100 <div id="illustration"></div> |
| 91 </template> | 101 </template> |
| 92 </dom-module> | 102 </dom-module> |
| 93 | 103 |
| OLD | NEW |