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

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

Issue 674633002: sync: add WIFI_CREDENTIALS protobuf, ModelType, and preference (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@local-master
Patch Set: sync: add WIFI_CREDENTIALS protobuf, ModelType, and preference Created 6 years, 1 month 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 <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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 </span> 97 </span>
98 </label> 98 </label>
99 </div> 99 </div>
100 <div id="tabs-item" class="sync-type-checkbox checkbox"> 100 <div id="tabs-item" class="sync-type-checkbox checkbox">
101 <label> 101 <label>
102 <input id="tabs-checkbox" type="checkbox"> 102 <input id="tabs-checkbox" type="checkbox">
103 <span i18n-content="openTabs" il8n-values="title:tabs"> 103 <span i18n-content="openTabs" il8n-values="title:tabs">
104 </span> 104 </span>
105 </label> 105 </label>
106 </div> 106 </div>
107 <div id="wifi-credentials-item" class="sync-type-checkbox checkbox ">
108 <label>
109 <input id="wifi-credentials-checkbox" type="checkbox">
110 <span i18n-content="wifiCredentials" il8n-values="title:wifiCr edentials">
111 </span>
112 </label>
113 </div>
107 </div> 114 </div>
108 </div> 115 </div>
109 <div id="customize-sync-encryption-new"> 116 <div id="customize-sync-encryption-new">
110 <hr> 117 <hr>
111 <h4 i18n-content="encryptionSectionTitle"></h4> 118 <h4 i18n-content="encryptionSectionTitle"></h4>
112 <div id="encryption-section-message" 119 <div id="encryption-section-message"
113 i18n-content="encryptionSectionMessage"></div> 120 i18n-content="encryptionSectionMessage"></div>
114 <div id="sync-new-encryption-section-container"> 121 <div id="sync-new-encryption-section-container">
115 <div class="radio"> 122 <div class="radio">
116 <label> 123 <label>
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 </if> 238 </if>
232 </div> 239 </div>
233 <div class="action-area button-strip"> 240 <div class="action-area button-strip">
234 <input id="stop-syncing-cancel" type="button" 241 <input id="stop-syncing-cancel" type="button"
235 i18n-values="value:cancel"> 242 i18n-values="value:cancel">
236 <input id="stop-syncing-ok" type="button" 243 <input id="stop-syncing-ok" type="button"
237 i18n-values="value:stopSyncingConfirm"> 244 i18n-values="value:stopSyncingConfirm">
238 </div> 245 </div>
239 </div> 246 </div>
240 </div> 247 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698