| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 |
| 1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> | 3 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> |
| 2 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_icon.
html"> | 4 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_icon.
html"> |
| 3 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm
l"> | 5 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm
l"> |
| 4 <link rel="import" href="chrome://resources/html/polymer.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="../icons.html"> | 7 <link rel="import" href="../icons.html"> |
| 7 <link rel="import" href="../route.html"> | 8 <link rel="import" href="../route.html"> |
| 8 <link rel="import" href="../settings_shared_css.html"> | 9 <link rel="import" href="../settings_shared_css.html"> |
| 9 | 10 |
| 10 <dom-module id="tether-connection-dialog"> | 11 <dom-module id="tether-connection-dialog"> |
| 11 <template> | 12 <template> |
| 12 <style include="settings-shared"> | 13 <style include="settings-shared"> |
| 13 .body, | 14 .body, |
| 14 #host-device-text-container { | 15 #host-device-text-container { |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 </paper-button> | 67 </paper-button> |
| 67 <paper-button id="connectButton" | 68 <paper-button id="connectButton" |
| 68 class="action-button" on-tap="onConnectTap_"> | 69 class="action-button" on-tap="onConnectTap_"> |
| 69 $i18n{tetherConnectionConnectButton} | 70 $i18n{tetherConnectionConnectButton} |
| 70 </paper-button> | 71 </paper-button> |
| 71 </div> | 72 </div> |
| 72 </dialog> | 73 </dialog> |
| 73 </template> | 74 </template> |
| 74 <script src="tether_connection_dialog.js"></script> | 75 <script src="tether_connection_dialog.js"></script> |
| 75 </dom-module> | 76 </dom-module> |
| OLD | NEW |