| 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/neon-animation/animatio
ns/fade-in-animation.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/fade-in-animation.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/fade-out-animation.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/fade-out-animation.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> |
| 9 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
mated-pages.html"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
mated-pages.html"> |
| 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog/paper-dial
og.html"> | 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog/paper-dial
og.html"> |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 </throbber-notice> | 70 </throbber-notice> |
| 71 </neon-animatable> | 71 </neon-animatable> |
| 72 </neon-animated-pages> | 72 </neon-animated-pages> |
| 73 | 73 |
| 74 <navigation-bar id="navigation" close-visible on-close="onClose_" | 74 <navigation-bar id="navigation" close-visible on-close="onClose_" |
| 75 disabled="[[disabled]]"> | 75 disabled="[[disabled]]"> |
| 76 </navigation-bar> | 76 </navigation-bar> |
| 77 | 77 |
| 78 <paper-dialog id="cancelConfirmDlg" no-cancel-on-outside-click | 78 <paper-dialog id="cancelConfirmDlg" no-cancel-on-outside-click |
| 79 on-iron-overlay-closed="onDialogOverlayClosed_"> | 79 on-iron-overlay-closed="onDialogOverlayClosed_"> |
| 80 <h2 i18n-content="accountSetupCancelDialogTitle"></h2> | 80 <h2>$i18n{accountSetupCancelDialogTitle}</h2> |
| 81 <div class="buttons"> | 81 <div class="buttons"> |
| 82 <gaia-button type="dialog" dialog-dismiss autofocus | 82 <gaia-button type="dialog" dialog-dismiss autofocus> |
| 83 i18n-content="accountSetupCancelDialogNo"> | 83 $i18n{accountSetupCancelDialogNo} |
| 84 </gaia-button> | 84 </gaia-button> |
| 85 <gaia-button type="dialog" dialog-confirm on-tap="onConfirmCancel_" | 85 <gaia-button type="dialog" dialog-confirm on-tap="onConfirmCancel_"> |
| 86 i18n-content="accountSetupCancelDialogYes"> | 86 $i18n{accountSetupCancelDialogYes} |
| 87 </gaia-button> | 87 </gaia-button> |
| 88 </div> | 88 </div> |
| 89 </paper-dialog> | 89 </paper-dialog> |
| 90 | 90 |
| 91 </template> | 91 </template> |
| 92 </dom-module> | 92 </dom-module> |
| 93 | |
| OLD | NEW |