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

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

Issue 335953002: Add UMA stats for user settings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 6 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 14 matching lines...) Expand all
25 i18n-values="value:syncEverything"> 25 i18n-values="value:syncEverything">
26 </div> 26 </div>
27 </div> 27 </div>
28 </div> 28 </div>
29 </div> 29 </div>
30 <div id="customize-sync-preferences" hidden> 30 <div id="customize-sync-preferences" hidden>
31 <h1 i18n-content="syncSetupConfigureTitle"></h1> 31 <h1 i18n-content="syncSetupConfigureTitle"></h1>
32 <form id="choose-data-types-form"> 32 <form id="choose-data-types-form">
33 <div id="sync-configure-content" class="content-area"> 33 <div id="sync-configure-content" class="content-area">
34 <div id="sync-select-container"> 34 <div id="sync-select-container">
35 <select id="sync-select-datatypes"> 35 <select id="sync-select-datatypes"
36 metric="Options_SyncSelectDatatypes">
michaelpg 2014/06/13 23:15:43 nit: s/types/Types/
stevenjb 2014/06/16 21:58:10 Done.
36 <option i18n-content="syncAllDataTypes" selected></option> 37 <option i18n-content="syncAllDataTypes" selected></option>
37 <option i18n-content="chooseDataTypes"></option> 38 <option i18n-content="chooseDataTypes"></option>
38 <!-- The syncNothing element is to be removed for M29. 39 <!-- The syncNothing element is to be removed for M29.
39 TODO(rsimha): Revisit this for M30. 40 TODO(rsimha): Revisit this for M30.
40 See http://crbug.com/252049. 41 See http://crbug.com/252049.
41 --> 42 -->
42 </select> 43 </select>
43 <div id="choose-data-types-body"> 44 <div id="choose-data-types-body">
44 <div id="apps-item" class="sync-type-checkbox checkbox"> 45 <div id="apps-item" class="sync-type-checkbox checkbox">
45 <label> 46 <label>
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 </if> 231 </if>
231 </div> 232 </div>
232 <div class="action-area button-strip"> 233 <div class="action-area button-strip">
233 <input id="stop-syncing-cancel" type="button" 234 <input id="stop-syncing-cancel" type="button"
234 i18n-values="value:cancel"> 235 i18n-values="value:cancel">
235 <input id="stop-syncing-ok" type="button" 236 <input id="stop-syncing-ok" type="button"
236 i18n-values="value:stopSyncingConfirm"> 237 i18n-values="value:stopSyncingConfirm">
237 </div> 238 </div>
238 </div> 239 </div>
239 </div> 240 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698