| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 2 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 4 <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-checkbox/paper-ch
eckbox.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog/paper-dial
og.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog/paper-dial
og.html"> |
| 7 <link rel="import" href="chrome://md-settings/controls/settings_checkbox.html"> | 7 <link rel="import" href="chrome://md-settings/controls/settings_checkbox.html"> |
| 8 <link rel="import" href="chrome://md-settings/people_page/sync_page.html"> | 8 <link rel="import" href="chrome://md-settings/people_page/sync_page.html"> |
| 9 <link rel="import" href="chrome://md-settings/people_page/profile_info_browser_p
roxy.html"> | 9 <link rel="import" href="chrome://md-settings/people_page/profile_info_browser_p
roxy.html"> |
| 10 <link rel="import" href="chrome://md-settings/people_page/sync_browser_proxy.htm
l"> | 10 <link rel="import" href="chrome://md-settings/people_page/sync_browser_proxy.htm
l"> |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 </span> | 88 </span> |
| 89 </if> | 89 </if> |
| 90 <if expr="not chromeos"> | 90 <if expr="not chromeos"> |
| 91 <span id="profile-name"> | 91 <span id="profile-name"> |
| 92 [[profileName_]] | 92 [[profileName_]] |
| 93 </span> | 93 </span> |
| 94 </if> | 94 </if> |
| 95 </div> | 95 </div> |
| 96 <if expr="not chromeos"> | 96 <if expr="not chromeos"> |
| 97 <template is="dom-if" if="[[!syncStatus.signedIn]]"> | 97 <template is="dom-if" if="[[!syncStatus.signedIn]]"> |
| 98 <paper-button class="action-button" on-tap="onSigninTap_" | 98 <span class="secondary-action"> |
| 99 disabled="[[syncStatus.setupInProgress]]"> | 99 <paper-button class="primary-button" on-tap="onSigninTap_" |
| 100 $i18n{syncSignin} | 100 disabled="[[syncStatus.setupInProgress]]"> |
| 101 </paper-button> | 101 $i18n{syncSignin} |
| 102 </paper-button> |
| 103 </span> |
| 102 </template> | 104 </template> |
| 103 <template is="dom-if" if="[[syncStatus.signedIn]]"> | 105 <template is="dom-if" if="[[syncStatus.signedIn]]"> |
| 104 <span class="secondary-action"> | 106 <span class="secondary-action"> |
| 105 <paper-button class="secondary-button" on-tap="onDisconnectTap_" | 107 <paper-button class="secondary-button" on-tap="onDisconnectTap_" |
| 106 disabled="[[syncStatus.setupInProgress]]"> | 108 disabled="[[syncStatus.setupInProgress]]"> |
| 107 $i18n{syncDisconnect} | 109 $i18n{syncDisconnect} |
| 108 </paper-button> | 110 </paper-button> |
| 109 </span> | 111 </span> |
| 110 </template> | 112 </template> |
| 111 </if> | 113 </if> |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 | 259 |
| 258 <if expr="chromeos"> | 260 <if expr="chromeos"> |
| 259 <template is="dom-if" if="[[easyUnlockEnabled_]]"> | 261 <template is="dom-if" if="[[easyUnlockEnabled_]]"> |
| 260 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"> | 262 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"> |
| 261 </easy-unlock-turn-off-dialog> | 263 </easy-unlock-turn-off-dialog> |
| 262 </template> | 264 </template> |
| 263 </if> | 265 </if> |
| 264 </template> | 266 </template> |
| 265 <script src="people_page.js"></script> | 267 <script src="people_page.js"></script> |
| 266 </dom-module> | 268 </dom-module> |
| OLD | NEW |