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

Side by Side Diff: chrome/browser/resources/chromeos/login/host-pairing-screen.html

Issue 2771623002: Bootstrapping: Display meaningful enrollment error message on Slave device. (Closed)
Patch Set: Created 3 years, 9 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 unified diff | Download patch
OLDNEW
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-icons/device-icons .html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/device-icons .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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 <!-- 'enrollmentTitle' contains <strong> tag. We need to wrap it in 81 <!-- 'enrollmentTitle' contains <strong> tag. We need to wrap it in
82 'html-echo' to prevent HTML escaping. --> 82 'html-echo' to prevent HTML escaping. -->
83 <html-echo content="[[getEnrollmentStepTitle_(C.enrollmentDomain)]]"> 83 <html-echo content="[[getEnrollmentStepTitle_(C.enrollmentDomain)]]">
84 </html-echo> 84 </html-echo>
85 </div> 85 </div>
86 </host-pairing-page> 86 </host-pairing-page>
87 <host-pairing-page name="enrollment-error"> 87 <host-pairing-page name="enrollment-error">
88 <div class="title" 88 <div class="title"
89 i18n-content="loginHostPairingScreenEnrollmentErrorTitle"> 89 i18n-content="loginHostPairingScreenEnrollmentErrorTitle">
90 </div> 90 </div>
91 <div>[[C.enrollmentError]]</div>
91 <div i18n-content="loginHostPairingScreenErrorNeedRestartText"></div> 92 <div i18n-content="loginHostPairingScreenErrorNeedRestartText"></div>
92 </host-pairing-page> 93 </host-pairing-page>
93 <host-pairing-page name="pairing-done"> 94 <host-pairing-page name="pairing-done">
94 <div class="title" i18n-content="loginHostPairingScreenDoneTitle"> 95 <div class="title" i18n-content="loginHostPairingScreenDoneTitle">
95 </div> 96 </div>
96 <div i18n-content="loginHostPairingScreenDoneText"></div> 97 <div i18n-content="loginHostPairingScreenDoneText"></div>
97 </host-pairing-page> 98 </host-pairing-page>
98 </neon-animated-pages> 99 </neon-animated-pages>
99 <paper-icon-item id="device-indicator"> 100 <paper-icon-item id="device-indicator">
100 <iron-icon icon="device:bluetooth"></iron-icon> 101 <iron-icon icon="device:bluetooth"></iron-icon>
101 <div id="device-label">{{C.deviceName}}</div> 102 <div id="device-label">{{C.deviceName}}</div>
102 </paper-icon-item> 103 </paper-icon-item>
103 <div id="illustration"></div> 104 <div id="illustration"></div>
104 </template> 105 </template>
105 </dom-module> 106 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698