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

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

Issue 7056021: Sync: Add encryption customization radio. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 id="sync-setup-login" class="hidden"> 2 <div id="sync-setup-login" class="hidden">
3 <h1 i18n-content="syncSetupOverlayTitle"></h1> 3 <h1 i18n-content="syncSetupOverlayTitle"></h1>
4 <div class="content-area"> 4 <div class="content-area">
5 <div> 5 <div>
6 <div id="top-blurb-error"> 6 <div id="top-blurb-error">
7 <span id="error-signing-in" i18n-content="errorSigningIn"></span> 7 <span id="error-signing-in" i18n-content="errorSigningIn"></span>
8 <span id="error-custom"></span> 8 <span id="error-custom"></span>
9 </div> 9 </div>
10 <form id="gaia-login-form"> 10 <form id="gaia-login-form">
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 </div> 283 </div>
284 </div> 284 </div>
285 </div> 285 </div>
286 <div class="sync-errors"> 286 <div class="sync-errors">
287 <span id="error-text" i18n-content="syncZeroDataTypesError" 287 <span id="error-text" i18n-content="syncZeroDataTypesError"
288 class="sync-error-hide"></span> 288 class="sync-error-hide"></span>
289 <span id="aborted-text" i18n-content="abortedError" 289 <span id="aborted-text" i18n-content="abortedError"
290 class="sync-error-hide"></span> 290 class="sync-error-hide"></span>
291 </div> 291 </div>
292 <hr> 292 <hr>
293 <h4 i18n-content="encryptedDataTypesTitle"></h4>
294 <div class="sync-customize-section-container">
295 <div>
296 <input id="encrypt-sensitive-option" name="encrypt" type="radio"
297 value="sensitive">
298 <label for="encrypt-sensitive-option"
299 i18n-content="encryptSensitiveOption"></label>
300 </div>
301 <div>
302 <input id="encrypt-all-option" name="encrypt" type="radio"
303 value="all">
304 <label for="encrypt-all-option" i18n-content="encryptAllOption">
305 </label>
306 </div>
307 </div>
308 <hr>
293 <h4 i18n-content="passphraseSectionTitle"></h4> 309 <h4 i18n-content="passphraseSectionTitle"></h4>
294 <div id="sync-passphrase-container"> 310 <div class="sync-customize-section-container">
295 <div id="passphrase-encryption-message" 311 <div id="passphrase-encryption-message"
296 i18n-content="passphraseEncryptionMessage"></div> 312 i18n-content="passphraseEncryptionMessage"></div>
297 <div> 313 <div>
298 <input id="google-option" name="option" type="radio" 314 <input id="google-option" name="option" type="radio"
299 value="google"> 315 value="google">
300 <label for="google-option" i18n-content="googleOption"></label> 316 <label for="google-option" i18n-content="googleOption"></label>
301 </div> 317 </div>
302 <div> 318 <div>
303 <input id="explicit-option" name="option" type="radio" 319 <input id="explicit-option" name="option" type="radio"
304 value="explicit"> 320 value="explicit">
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 </div> 390 </div>
375 </form> 391 </form>
376 </div> 392 </div>
377 <div class="action-area"> 393 <div class="action-area">
378 <div id="passphrase-throbber" class="throbber"></div> 394 <div id="passphrase-throbber" class="throbber"></div>
379 <input id="passphrase-ok" type="submit" i18n-values="value:ok"> 395 <input id="passphrase-ok" type="submit" i18n-values="value:ok">
380 <input id="passphrase-cancel" type="button" i18n-values="value:cancel"> 396 <input id="passphrase-cancel" type="button" i18n-values="value:cancel">
381 </div> 397 </div>
382 </div> 398 </div>
383 </div> 399 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698