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

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

Issue 1519883003: 1) Add basic configuration (network connection, language, keyboard layout, timezone) setup page. 2)… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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-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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 <div class="title" i18n-content="login_HostPairingScreen_welcomeTitle"> 48 <div class="title" i18n-content="login_HostPairingScreen_welcomeTitle">
49 </div> 49 </div>
50 <div i18n-content="login_HostPairingScreen_welcomeText"></div> 50 <div i18n-content="login_HostPairingScreen_welcomeText"></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="login_HostPairingScreen_confirmationTitle">
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="login_HostPairingScreen_setupBasicConfigTitle">
61 </div>
62 </host-pairing-page>
63 <host-pairing-page name="setup-network-error">
64 <div class="title"
65 i18n-content="login_HostPairingScreen_setupNetworkErrorTitle">
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="login_HostPairingScreen_updatingTitle">
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="login_HostPairingScreen_enrollTitle">
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">
(...skipping 16 matching lines...) Expand all
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698