| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 1 <link rel="import" href="chrome://resources/cr_elements/icons.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/icon.html"> | 3 <link rel="import" href="chrome://resources/html/icon.html"> |
| 4 <link rel="import" href="chrome://resources/html/polymer.html"> | 4 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 5 <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"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> |
| 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
| 10 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> | 10 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 </div> | 85 </div> |
| 86 <if expr="not chromeos"> | 86 <if expr="not chromeos"> |
| 87 <div class="middle two-line" on-tap="onProfileNameTap_" actionable> | 87 <div class="middle two-line" on-tap="onProfileNameTap_" actionable> |
| 88 </if> | 88 </if> |
| 89 <if expr="chromeos"> | 89 <if expr="chromeos"> |
| 90 <div class="middle two-line" on-tap="onPictureTap_" actionable> | 90 <div class="middle two-line" on-tap="onPictureTap_" actionable> |
| 91 </if> | 91 </if> |
| 92 <span class="flex" id="profile-name"> | 92 <span class="flex" id="profile-name"> |
| 93 [[profileName_]] | 93 [[profileName_]] |
| 94 </span> | 94 </span> |
| 95 <button class="icon-arrow-right" is="paper-icon-button-light"> | 95 <button class="icon-arrow-forward" is="paper-icon-button-light"> |
| 96 </button> | 96 </button> |
| 97 </div> | 97 </div> |
| 98 <if expr="not chromeos"> | 98 <if expr="not chromeos"> |
| 99 <template is="dom-if" if="[[showSignin_(syncStatus)]]"> | 99 <template is="dom-if" if="[[showSignin_(syncStatus)]]"> |
| 100 <span class="secondary-action"> | 100 <span class="secondary-action"> |
| 101 <paper-button class="primary-button" on-tap="onSigninTap_" | 101 <paper-button class="primary-button" on-tap="onSigninTap_" |
| 102 disabled="[[syncStatus.setupInProgress]]"> | 102 disabled="[[syncStatus.setupInProgress]]"> |
| 103 $i18n{syncSignin} | 103 $i18n{syncSignin} |
| 104 </paper-button> | 104 </paper-button> |
| 105 </span> | 105 </span> |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 | 336 |
| 337 <if expr="chromeos"> | 337 <if expr="chromeos"> |
| 338 <template is="dom-if" if="[[easyUnlockEnabled_]]"> | 338 <template is="dom-if" if="[[easyUnlockEnabled_]]"> |
| 339 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"> | 339 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"> |
| 340 </easy-unlock-turn-off-dialog> | 340 </easy-unlock-turn-off-dialog> |
| 341 </template> | 341 </template> |
| 342 </if> | 342 </if> |
| 343 </template> | 343 </template> |
| 344 <script src="people_page.js"></script> | 344 <script src="people_page.js"></script> |
| 345 </dom-module> | 345 </dom-module> |
| OLD | NEW |