| 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/iron-selector/iron-sele
ctor.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-selector/iron-sele
ctor.html"> |
| 9 <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-in-animation.html"> |
| 10 <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/animatio
ns/fade-out-animation.html"> |
| 11 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/hero-animation.html"> | 11 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/hero-animation.html"> |
| 12 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable-behavior.html"> |
| 12 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
mated-pages.html"> | 13 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
mated-pages.html"> |
| 13 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-sha
red-element-animatable-behavior.html"> | |
| 14 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 14 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 15 <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-icon-i
tem.html"> | 15 <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-icon-i
tem.html"> |
| 16 <link rel="import" href="chrome://resources/polymer/v1_0/paper-material/paper-ma
terial.html"> | 16 <link rel="import" href="chrome://resources/polymer/v1_0/paper-material/paper-ma
terial.html"> |
| 17 <link rel="import" href="chrome://resources/polymer/v1_0/paper-progress/paper-pr
ogress.html"> | 17 <link rel="import" href="chrome://resources/polymer/v1_0/paper-progress/paper-pr
ogress.html"> |
| 18 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html
"> | 18 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html
"> |
| 19 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> | 19 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> |
| 20 | 20 |
| 21 <!-- | 21 <!-- |
| 22 List of devices. | 22 List of devices. |
| 23 Published properties: | 23 Published properties: |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 <paper-button on-tap="userActed" action="startSession" | 253 <paper-button on-tap="userActed" action="startSession" |
| 254 disabled$="{{C.controlsDisabled}}" | 254 disabled$="{{C.controlsDisabled}}" |
| 255 i18n-content="login_ControllerPairingScreen_continueToHangoutsBtn"
> | 255 i18n-content="login_ControllerPairingScreen_continueToHangoutsBtn"
> |
| 256 </paper-button> | 256 </paper-button> |
| 257 </controller-pairing-page> | 257 </controller-pairing-page> |
| 258 </neon-animated-pages> | 258 </neon-animated-pages> |
| 259 </paper-material> | 259 </paper-material> |
| 260 </template> | 260 </template> |
| 261 </dom-module> | 261 </dom-module> |
| 262 | 262 |
| OLD | NEW |