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/web_ui_listener_behavior.html"> | 7 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> | 8 <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/neon-animation/neon-ani
matable.html"> | 9 <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/paper-button/paper-butt
on.html"> | 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
302 <if expr="not chromeos"> | 302 <if expr="not chromeos"> |
303 <div class="settings-box" on-tap="onImportDataTap_" actionable> | 303 <div class="settings-box" on-tap="onImportDataTap_" actionable> |
304 <div class="start">$i18n{importTitle}</div> | 304 <div class="start">$i18n{importTitle}</div> |
305 <button id="importDataDialogTrigger" class="subpage-arrow" | 305 <button id="importDataDialogTrigger" class="subpage-arrow" |
306 is="paper-icon-button-light" aria-label="$i18n{importTitle}"> | 306 is="paper-icon-button-light" aria-label="$i18n{importTitle}"> |
307 </button> | 307 </button> |
308 </div> | 308 </div> |
309 </if> | 309 </if> |
310 | 310 |
311 <template is="dom-if" if="[[profileManagesSupervisedUsers_]]"> | 311 <template is="dom-if" if="[[profileManagesSupervisedUsers_]]"> |
312 <div id="manageSupervisedUsersContainer" class="settings-box two-line" | 312 <div id="manageSupervisedUsersContainer" class="settings-box" |
313 on-tap="onManageSupervisedUsers_" actionable> | 313 on-tap="onManageSupervisedUsers_" actionable> |
314 <div class="start"> | 314 <div class="start">$i18n{manageSupervisedUsers}</div> |
315 $i18n{manageSupervisedUsers} | |
316 <div class="secondary" id="manageSupervisedUsersSecondary"> | |
317 $i18n{manageSupervisedUsersDescription} | |
318 </div> | |
319 </div> | |
320 <button class="icon-external" is="paper-icon-button-light" | 315 <button class="icon-external" is="paper-icon-button-light" |
321 aria-label="$i18n{manageSupervisedUsers}" | 316 aria-label="$i18n{manageSupervisedUsers}" |
322 aria-describedby="manageSupervisedUsersSecondary"></button> | 317 aria-describedby="manageSupervisedUsersSecondary"></button> |
323 </div> | 318 </div> |
324 </template> | 319 </template> |
325 </neon-animatable> | 320 </neon-animatable> |
326 <template is="dom-if" route-path="/syncSetup" | 321 <template is="dom-if" route-path="/syncSetup" |
327 no-search$="[[!isAdvancedSyncSettingsVisible_(syncStatus)]]"> | 322 no-search$="[[!isAdvancedSyncSettingsVisible_(syncStatus)]]"> |
328 <settings-subpage | 323 <settings-subpage |
329 associated-control="[[$$('#sync-status')]]" | 324 associated-control="[[$$('#sync-status')]]" |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
431 <if expr="chromeos"> | 426 <if expr="chromeos"> |
432 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]"> | 427 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]"> |
433 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog" | 428 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog" |
434 on-close="onEasyUnlockTurnOffDialogClose_"> | 429 on-close="onEasyUnlockTurnOffDialogClose_"> |
435 </easy-unlock-turn-off-dialog> | 430 </easy-unlock-turn-off-dialog> |
436 </template> | 431 </template> |
437 </if> | 432 </if> |
438 </template> | 433 </template> |
439 <script src="people_page.js"></script> | 434 <script src="people_page.js"></script> |
440 </dom-module> | 435 </dom-module> |
OLD | NEW |