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/polymer.html"> | 2 <link rel="import" href="chrome://resources/html/polymer.html"> |
3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
4 <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/neon-animation/neon-ani
matable.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="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> |
7 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> | 7 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> |
8 <link rel="import" href="/controls/settings_checkbox.html"> | 8 <link rel="import" href="/controls/settings_checkbox.html"> |
9 <link rel="import" href="/people_page/sync_page.html"> | 9 <link rel="import" href="/people_page/sync_page.html"> |
10 <link rel="import" href="/people_page/profile_info_browser_proxy.html"> | 10 <link rel="import" href="/people_page/profile_info_browser_proxy.html"> |
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 <div class="body"> | 289 <div class="body"> |
290 <div inner-h-t-m-l="[[getDisconnectExplanationHtml_(syncStatus.domain)]]
"> | 290 <div inner-h-t-m-l="[[getDisconnectExplanationHtml_(syncStatus.domain)]]
"> |
291 </div> | 291 </div> |
292 <if expr="(not chromeos and is_posix) or is_win or is_macosx"> | 292 <if expr="(not chromeos and is_posix) or is_win or is_macosx"> |
293 <paper-checkbox id="deleteProfile" hidden=[[syncStatus.domain]]> | 293 <paper-checkbox id="deleteProfile" hidden=[[syncStatus.domain]]> |
294 $i18n{syncDisconnectDeleteProfile} | 294 $i18n{syncDisconnectDeleteProfile} |
295 </paper-checkbox> | 295 </paper-checkbox> |
296 </if> | 296 </if> |
297 </div> | 297 </div> |
298 <div class="button-container"> | 298 <div class="button-container"> |
299 <paper-button on-tap="onDisconnectCancel_">$i18n{cancel}</paper-button> | 299 <paper-button on-tap="onDisconnectCancel_" class="cancel-button"> |
| 300 $i18n{cancel} |
| 301 </paper-button> |
300 <paper-button id="disconnectConfirm" class="action-button" | 302 <paper-button id="disconnectConfirm" class="action-button" |
301 hidden=[[syncStatus.domain]] on-tap="onDisconnectConfirm_"> | 303 hidden=[[syncStatus.domain]] on-tap="onDisconnectConfirm_"> |
302 $i18n{syncDisconnect} | 304 $i18n{syncDisconnect} |
303 </paper-button> | 305 </paper-button> |
304 <paper-button id="disconnectManagedProfileConfirm" class="action-button" | 306 <paper-button id="disconnectManagedProfileConfirm" class="action-button" |
305 hidden=[[!syncStatus.domain]] on-tap="onDisconnectConfirm_"> | 307 hidden=[[!syncStatus.domain]] on-tap="onDisconnectConfirm_"> |
306 $i18n{syncDisconnectConfirm} | 308 $i18n{syncDisconnectConfirm} |
307 </paper-button> | 309 </paper-button> |
308 </div> | 310 </div> |
309 </cr-dialog> | 311 </cr-dialog> |
310 | 312 |
311 <if expr="chromeos"> | 313 <if expr="chromeos"> |
312 <template is="dom-if" if="[[easyUnlockEnabled_]]"> | 314 <template is="dom-if" if="[[easyUnlockEnabled_]]"> |
313 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"> | 315 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"> |
314 </easy-unlock-turn-off-dialog> | 316 </easy-unlock-turn-off-dialog> |
315 </template> | 317 </template> |
316 </if> | 318 </if> |
317 </template> | 319 </template> |
318 <script src="people_page.js"></script> | 320 <script src="people_page.js"></script> |
319 </dom-module> | 321 </dom-module> |
OLD | NEW |