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

Side by Side Diff: chrome/browser/resources/sync_setup_overlay.html

Issue 235943011: Add a checkbox on stop-sync dialog to allow user to choose whether to delete (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 | Annotate | Revision Log
OLDNEW
1 <div id="sync-setup-overlay" class="page" hidden> 1 <div id="sync-setup-overlay" class="page" hidden>
2 <div class="close-button"></div> 2 <div class="close-button"></div>
3 <div id="sync-setup-configure" hidden> 3 <div id="sync-setup-configure" hidden>
4 <div id="confirm-sync-preferences"> 4 <div id="confirm-sync-preferences">
5 <h1 i18n-content="confirmSyncPreferences"></h1> 5 <h1 i18n-content="confirmSyncPreferences"></h1>
6 <div id="sync-instructions-container" class="content-area"> 6 <div id="sync-instructions-container" class="content-area">
7 <span i18n-content="chooseDataTypesInstructions"></span> 7 <span i18n-content="chooseDataTypesInstructions"></span>
8 <a id="encryption-help-link" target="_blank" 8 <a id="encryption-help-link" target="_blank"
9 i18n-values="href:syncEverythingHelpURL" i18n-content="learnMore"> 9 i18n-values="href:syncEverythingHelpURL" i18n-content="learnMore">
10 </a> 10 </a>
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 <span i18n-content="syncSetupTimeoutContent"></span> 213 <span i18n-content="syncSetupTimeoutContent"></span>
214 </div> 214 </div>
215 <div class="action-area button-strip"> 215 <div class="action-area button-strip">
216 <button id="timeout-ok" i18n-content="ok"></button> 216 <button id="timeout-ok" i18n-content="ok"></button>
217 </div> 217 </div>
218 </div> 218 </div>
219 <div id="sync-setup-stop-syncing" hidden> 219 <div id="sync-setup-stop-syncing" hidden>
220 <h1 i18n-content="stopSyncingTitle"></h1> 220 <h1 i18n-content="stopSyncingTitle"></h1>
221 <div class="content-area"> 221 <div class="content-area">
222 <span i18n-values=".innerHTML:stopSyncingExplanation"></span> 222 <span i18n-values=".innerHTML:stopSyncingExplanation"></span>
223 <if expr="(not chromeos and is_posix) or is_win or is_macosx">
224 <div id="sync-setup-delete-profile" class="checkbox">
225 <label>
226 <input id="delete-profile" type="checkbox">
227 <span i18n-content="deleteProfileLabel"></span>
228 </label>
229 </div>
230 </if>
223 </div> 231 </div>
224 <div class="action-area button-strip"> 232 <div class="action-area button-strip">
225 <input id="stop-syncing-cancel" type="button" 233 <input id="stop-syncing-cancel" type="button"
226 i18n-values="value:cancel"> 234 i18n-values="value:cancel">
227 <input id="stop-syncing-ok" type="button" 235 <input id="stop-syncing-ok" type="button"
228 i18n-values="value:stopSyncingConfirm"> 236 i18n-values="value:stopSyncingConfirm">
229 </div> 237 </div>
230 </div> 238 </div>
231 </div> 239 </div>
OLDNEW
« no previous file with comments | « chrome/browser/resources/sync_setup_overlay.css ('k') | chrome/browser/resources/sync_setup_overlay.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698