| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 |
| 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 3 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 2 <link rel="import" href="chrome://resources/html/polymer.html"> | |
| 3 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 4 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 4 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 5 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 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-icon/iron-icon.htm
l"> |
| 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-iconset-svg/iron-i
conset-svg.html"> |
| 8 <link rel="import" href="../icons.html"> | 9 <link rel="import" href="../icons.html"> |
| 9 <link rel="import" href="../settings_shared_css.html"> | 10 <link rel="import" href="../settings_shared_css.html"> |
| 10 <link rel="import" href="fingerprint_browser_proxy.html"> | 11 <link rel="import" href="fingerprint_browser_proxy.html"> |
| 11 <link rel="import" href="fingerprint_progress_arc.html"> | 12 <link rel="import" href="fingerprint_progress_arc.html"> |
| 12 | 13 |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 <paper-button id="closeButton" | 80 <paper-button id="closeButton" |
| 80 class$="[[getCloseButtonClass_(step_)]]" on-tap="onClose_"> | 81 class$="[[getCloseButtonClass_(step_)]]" on-tap="onClose_"> |
| 81 [[getCloseButtonText_(step_)]] | 82 [[getCloseButtonText_(step_)]] |
| 82 </paper-button> | 83 </paper-button> |
| 83 </div> | 84 </div> |
| 84 </dialog> | 85 </dialog> |
| 85 </template> | 86 </template> |
| 86 | 87 |
| 87 <script src="setup_fingerprint_dialog.js"></script> | 88 <script src="setup_fingerprint_dialog.js"></script> |
| 88 </dom-module> | 89 </dom-module> |
| OLD | NEW |