| 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-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"> |
| 11 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
mated-pages.html"> | 11 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
mated-pages.html"> |
| 12 <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-icon-i
tem.html"> | 12 <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-icon-i
tem.html"> |
| 13 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html
"> | 13 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html
"> |
| 14 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> | 14 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> |
| 15 | 15 |
| 16 <dom-module name="host-pairing-page"> | 16 <dom-module id="host-pairing-page"> |
| 17 | 17 |
| 18 <link rel="stylesheet" href="oobe_screen_host_pairing_page.css"> | 18 <link rel="stylesheet" href="oobe_screen_host_pairing_page.css"> |
| 19 | 19 |
| 20 <template> | 20 <template> |
| 21 <div id="title"> | 21 <div id="title"> |
| 22 <content select=".title"></content> | 22 <content select=".title"></content> |
| 23 </div> | 23 </div> |
| 24 <div id="content"> | 24 <div id="content"> |
| 25 <content></content> | 25 <content></content> |
| 26 </div> | 26 </div> |
| 27 </template> | 27 </template> |
| 28 </dom-module> | 28 </dom-module> |
| 29 | 29 |
| 30 <dom-module name="host-pairing-screen"> | 30 <dom-module id="host-pairing-screen"> |
| 31 | 31 |
| 32 <link rel="stylesheet" href="oobe_screen_host_pairing.css"> | 32 <link rel="stylesheet" href="oobe_screen_host_pairing.css"> |
| 33 | 33 |
| 34 <template> | 34 <template> |
| 35 <neon-animated-pages attr-for-selected="name" selected="[[C.page]]" | 35 <neon-animated-pages attr-for-selected="name" selected="[[C.page]]" |
| 36 entry-animation="fade-in-animation" exit-animation="fade-out-animation"> | 36 entry-animation="fade-in-animation" exit-animation="fade-out-animation"> |
| 37 <host-pairing-page name="welcome"> | 37 <host-pairing-page name="welcome"> |
| 38 <div class="title" i18n-content="loginHostPairingScreenWelcomeTitle"> | 38 <div class="title" i18n-content="loginHostPairingScreenWelcomeTitle"> |
| 39 </div> | 39 </div> |
| 40 <div i18n-content="loginHostPairingScreenWelcomeText"></div> | 40 <div i18n-content="loginHostPairingScreenWelcomeText"></div> |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 <div i18n-content="loginHostPairingScreenDoneText"></div> | 96 <div i18n-content="loginHostPairingScreenDoneText"></div> |
| 97 </host-pairing-page> | 97 </host-pairing-page> |
| 98 </neon-animated-pages> | 98 </neon-animated-pages> |
| 99 <paper-icon-item id="device-indicator"> | 99 <paper-icon-item id="device-indicator"> |
| 100 <iron-icon icon="device:bluetooth"></iron-icon> | 100 <iron-icon icon="device:bluetooth"></iron-icon> |
| 101 <div id="device-label">{{C.deviceName}}</div> | 101 <div id="device-label">{{C.deviceName}}</div> |
| 102 </paper-icon-item> | 102 </paper-icon-item> |
| 103 <div id="illustration"></div> | 103 <div id="illustration"></div> |
| 104 </template> | 104 </template> |
| 105 </dom-module> | 105 </dom-module> |
| OLD | NEW |