| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> | 1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> |
| 2 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 2 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 3 <link rel="import" href="chrome://resources/html/polymer.html"> | 3 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 4 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 4 <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"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 6 <link rel="import" href="/controls/settings_checkbox.html"> | 6 <link rel="import" href="/controls/settings_checkbox.html"> |
| 7 <link rel="import" href="/md_select_css.html"> | 7 <link rel="import" href="/settings_vars_css.html"> |
| 8 <link rel="import" href="chrome://resources/html/md_select_css.html"> |
| 8 <link rel="import" href="/people_page/import_data_browser_proxy.html"> | 9 <link rel="import" href="/people_page/import_data_browser_proxy.html"> |
| 9 | 10 |
| 10 <dom-module id="settings-import-data-dialog"> | 11 <dom-module id="settings-import-data-dialog"> |
| 11 <template> | 12 <template> |
| 12 <style include="settings-shared md-select"> | 13 <style include="settings-shared md-select"> |
| 13 #description { | 14 #description { |
| 14 align-items: center; | 15 align-items: center; |
| 15 display: flex; | 16 display: flex; |
| 16 min-height: var(--settings-row-min-height); | 17 min-height: var(--settings-row-min-height); |
| 17 } | 18 } |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 <paper-button id="actionButton" class="action-button" | 65 <paper-button id="actionButton" class="action-button" |
| 65 on-tap="onActionButtonTap_"> | 66 on-tap="onActionButtonTap_"> |
| 66 [[getActionButtonText_(selected_)]] | 67 [[getActionButtonText_(selected_)]] |
| 67 </paper-button> | 68 </paper-button> |
| 68 </div> | 69 </div> |
| 69 </div> | 70 </div> |
| 70 </dialog> | 71 </dialog> |
| 71 </template> | 72 </template> |
| 72 <script src="import_data_dialog.js"></script> | 73 <script src="import_data_dialog.js"></script> |
| 73 </dom-module> | 74 </dom-module> |
| OLD | NEW |