| 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/cr_elements/cr_expand_button/cr_expa
nd_button.html"> | 2 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa
nd_button.html"> |
| 3 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 3 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 4 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 4 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 5 <link rel="import" href="chrome://resources/html/icon.html"> | 5 <link rel="import" href="chrome://resources/html/icon.html"> |
| 6 <link rel="import" href="chrome://resources/html/polymer.html"> | 6 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 7 <link rel="import" href="chrome://resources/html/util.html"> | 7 <link rel="import" href="chrome://resources/html/util.html"> |
| 8 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 8 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
| 9 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> |
| 10 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> | 10 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 <if expr="not chromeos"> | 224 <if expr="not chromeos"> |
| 225 <div class="settings-box" on-tap="onImportDataTap_" actionable> | 225 <div class="settings-box" on-tap="onImportDataTap_" actionable> |
| 226 <div class="start">$i18n{importTitle}</div> | 226 <div class="start">$i18n{importTitle}</div> |
| 227 <button id="importDataDialogTrigger" class="subpage-arrow" | 227 <button id="importDataDialogTrigger" class="subpage-arrow" |
| 228 is="paper-icon-button-light" aria-label="$i18n{importTitle}"> | 228 is="paper-icon-button-light" aria-label="$i18n{importTitle}"> |
| 229 </button> | 229 </button> |
| 230 </div> | 230 </div> |
| 231 </if> | 231 </if> |
| 232 | 232 |
| 233 <template is="dom-if" if="[[profileManagesSupervisedUsers_]]"> | 233 <template is="dom-if" if="[[profileManagesSupervisedUsers_]]"> |
| 234 <div id="manageSupervisedUsersContainer" class="settings-box" | 234 <a id="manageSupervisedUsersContainer" class="settings-box" |
| 235 on-tap="onManageSupervisedUsers_" actionable> | 235 actionable tabindex="-1" target="_blank" |
| 236 href="$i18nRaw{supervisedUsersUrl}"> |
| 236 <div class="start">$i18n{manageSupervisedUsers}</div> | 237 <div class="start">$i18n{manageSupervisedUsers}</div> |
| 237 <button class="icon-external" is="paper-icon-button-light" | 238 <button class="icon-external" is="paper-icon-button-light" |
| 238 aria-label="$i18n{manageSupervisedUsers}"></button> | 239 aria-label="$i18n{manageSupervisedUsers}"></button> |
| 239 </div> | 240 </a> |
| 240 </template> | 241 </template> |
| 241 </neon-animatable> | 242 </neon-animatable> |
| 242 <template is="dom-if" route-path="/syncSetup" | 243 <template is="dom-if" route-path="/syncSetup" |
| 243 no-search$="[[!isAdvancedSyncSettingsVisible_(syncStatus)]]"> | 244 no-search$="[[!isAdvancedSyncSettingsVisible_(syncStatus)]]"> |
| 244 <settings-subpage | 245 <settings-subpage |
| 245 associated-control="[[$$('#sync-status')]]" | 246 associated-control="[[$$('#sync-status')]]" |
| 246 page-title="$i18n{syncPageTitle}" | 247 page-title="$i18n{syncPageTitle}" |
| 247 no-search$="[[!isAdvancedSyncSettingsVisible_(syncStatus)]]"> | 248 no-search$="[[!isAdvancedSyncSettingsVisible_(syncStatus)]]"> |
| 248 <settings-sync-page></settings-sync-page> | 249 <settings-sync-page></settings-sync-page> |
| 249 </settings-subpage> | 250 </settings-subpage> |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 | 341 |
| 341 <template is="dom-if" if="[[showImportDataDialog_]]" restamp> | 342 <template is="dom-if" if="[[showImportDataDialog_]]" restamp> |
| 342 <settings-import-data-dialog prefs="{{prefs}}" | 343 <settings-import-data-dialog prefs="{{prefs}}" |
| 343 on-close="onImportDataDialogClosed_"> | 344 on-close="onImportDataDialogClosed_"> |
| 344 </settings-import-data-dialog> | 345 </settings-import-data-dialog> |
| 345 </template> | 346 </template> |
| 346 | 347 |
| 347 </template> | 348 </template> |
| 348 <script src="people_page.js"></script> | 349 <script src="people_page.js"></script> |
| 349 </dom-module> | 350 </dom-module> |
| OLD | NEW |