Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(212)

Side by Side Diff: chrome/browser/resources/settings/people_page/people_page.html

Issue 2271843002: Settings People: Add /signOut route for Disconnect dialog. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update test Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/cr_elements/cr_dialog/cr_dialog.html "> 9 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html ">
10 <link rel="import" href="/controls/settings_checkbox.html"> 10 <link rel="import" href="/controls/settings_checkbox.html">
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 associated-control="[[$$('#picture-subpage-trigger')]]" 283 associated-control="[[$$('#picture-subpage-trigger')]]"
284 page-title="$i18n{editPerson}"> 284 page-title="$i18n{editPerson}">
285 <settings-manage-profile profile-icon-url="[[profileIconUrl_]]" 285 <settings-manage-profile profile-icon-url="[[profileIconUrl_]]"
286 profile-name="[[profileName_]]"> 286 profile-name="[[profileName_]]">
287 </settings-manage-profile> 287 </settings-manage-profile>
288 </settings-subpage> 288 </settings-subpage>
289 </template> 289 </template>
290 </if> 290 </if>
291 </settings-animated-pages> 291 </settings-animated-pages>
292 292
293 <dialog is="cr-dialog" id="disconnectDialog"> 293 <dialog is="cr-dialog" id="disconnectDialog" on-close="onDisconnectCancel_">
294 <div class="title">$i18n{syncDisconnectTitle}</div> 294 <div class="title">$i18n{syncDisconnectTitle}</div>
295 <div class="body"> 295 <div class="body">
296 <div inner-h-t-m-l="[[getDisconnectExplanationHtml_(syncStatus.domain)]] "> 296 <div inner-h-t-m-l="[[getDisconnectExplanationHtml_(syncStatus.domain)]] ">
297 </div> 297 </div>
298 <if expr="(not chromeos and is_posix) or is_win or is_macosx"> 298 <if expr="(not chromeos and is_posix) or is_win or is_macosx">
299 <paper-checkbox id="deleteProfile" hidden=[[syncStatus.domain]]> 299 <paper-checkbox id="deleteProfile" hidden=[[syncStatus.domain]]>
300 $i18n{syncDisconnectDeleteProfile} 300 $i18n{syncDisconnectDeleteProfile}
301 </paper-checkbox> 301 </paper-checkbox>
302 </if> 302 </if>
303 </div> 303 </div>
(...skipping 14 matching lines...) Expand all
318 318
319 <if expr="chromeos"> 319 <if expr="chromeos">
320 <template is="dom-if" if="[[easyUnlockEnabled_]]"> 320 <template is="dom-if" if="[[easyUnlockEnabled_]]">
321 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"> 321 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog">
322 </easy-unlock-turn-off-dialog> 322 </easy-unlock-turn-off-dialog>
323 </template> 323 </template>
324 </if> 324 </if>
325 </template> 325 </template>
326 <script src="people_page.js"></script> 326 <script src="people_page.js"></script>
327 </dom-module> 327 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698