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

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

Issue 3190004: dom-ui options: record user metrics for pref changes.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Rebase to r56963. Created 10 years, 4 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 class="page hidden" id="personalPage"> 1 <div class="page hidden" id="personalPage">
2 <h1 i18n-content="personalPage"></h1> 2 <h1 i18n-content="personalPage"></h1>
3 3
4 <section> 4 <section>
5 <h3 i18n-content="sync_section"></h3> 5 <h3 i18n-content="sync_section"></h3>
6 <div> 6 <div>
7 <div id="not-synced-controls" class="hidden"> 7 <div id="not-synced-controls" class="hidden">
8 <div class="section-text" id="sync_not_setup_info" 8 <div class="section-text" id="sync_not_setup_info"
9 i18n-content="sync_not_setup_info"></div> 9 i18n-content="sync_not_setup_info"></div>
10 <div> 10 <div>
(...skipping 11 matching lines...) Expand all
22 </div> 22 </div>
23 </div> 23 </div>
24 </section> 24 </section>
25 <section> 25 <section>
26 <h3 i18n-content="passwords"></h3> 26 <h3 i18n-content="passwords"></h3>
27 <div> 27 <div>
28 <label> 28 <label>
29 <input id="passwords_asktosave" 29 <input id="passwords_asktosave"
30 name="passwords_radio" 30 name="passwords_radio"
31 pref="profile.password_manager_enabled" 31 pref="profile.password_manager_enabled"
32 type="radio" value="true"> 32 type="radio" value="true" metric="Options_PasswordManager">
33 <span i18n-content="passwords_asktosave"></span> 33 <span i18n-content="passwords_asktosave"></span>
34 </label> 34 </label>
35 <label> 35 <label>
36 <input id="passwords_neversave" 36 <input id="passwords_neversave"
37 name="passwords_radio" 37 name="passwords_radio"
38 pref="profile.password_manager_enabled" 38 pref="profile.password_manager_enabled"
39 type="radio" value="false"> 39 type="radio" value="false" metric="Options_PasswordManager">
40 <span i18n-content="passwords_neversave"></span> 40 <span i18n-content="passwords_neversave"></span>
41 </label> 41 </label>
42 <div><button id="showpasswords" 42 <div><button id="showpasswords"
43 i18n-content="showpasswords"></button></div> 43 i18n-content="showpasswords"></button></div>
44 </div> 44 </div>
45 </section> 45 </section>
46 <section> 46 <section>
47 <h3 i18n-content="autofill"></h3> 47 <h3 i18n-content="autofill"></h3>
48 <div> 48 <div>
49 <button id="autofill_options" i18n-content="autofill_options"></button> 49 <button id="autofill_options" i18n-content="autofill_options"></button>
(...skipping 14 matching lines...) Expand all
64 <div> 64 <div>
65 <button id="themes_GTK_button" 65 <button id="themes_GTK_button"
66 i18n-content="themes_GTK_button"></button> 66 i18n-content="themes_GTK_button"></button>
67 <button id="themes_set_classic" 67 <button id="themes_set_classic"
68 i18n-content="themes_set_classic"></button> 68 i18n-content="themes_set_classic"></button>
69 <a i18n-content="themes_gallery" id="themes-gallery" href=""></a> 69 <a i18n-content="themes_gallery" id="themes-gallery" href=""></a>
70 </div> 70 </div>
71 <label> 71 <label>
72 <input name="decorations_radio" 72 <input name="decorations_radio"
73 pref="browser.custom_chrome_frame" 73 pref="browser.custom_chrome_frame"
74 type="radio" value="false"> 74 type="radio" value="false" metric="Options_CustomFrame">
75 <span i18n-content="showWindow_decorations_radio"></span> 75 <span i18n-content="showWindow_decorations_radio"></span>
76 </label> 76 </label>
77 <label> 77 <label>
78 <input name="decorations_radio" 78 <input name="decorations_radio"
79 pref="browser.custom_chrome_frame" 79 pref="browser.custom_chrome_frame"
80 type="radio" value="true"> 80 type="radio" value="true" metric="Options_CustomFrame">
81 <span i18n-content="hideWindow_decorations_radio"></span> 81 <span i18n-content="hideWindow_decorations_radio"></span>
82 </label> 82 </label>
83 </div> 83 </div>
84 </section> 84 </section>
85 </if> 85 </if>
86 <if expr="pp_ifdef('toolkit_views') or os == 'win32' or os == 'darwin'"> 86 <if expr="pp_ifdef('toolkit_views') or os == 'win32' or os == 'darwin'">
87 <section> 87 <section>
88 <h3 i18n-content="themes"></h3> 88 <h3 i18n-content="themes"></h3>
89 <div> 89 <div>
90 <button id="themes_reset" i18n-content="themes_reset"></button> 90 <button id="themes_reset" i18n-content="themes_reset"></button>
91 <a i18n-content="themes_gallery" id="themes-gallery" href=""></a> 91 <a i18n-content="themes_gallery" id="themes-gallery" href=""></a>
92 </div> 92 </div>
93 </section> 93 </section>
94 </if> 94 </if>
95 95
96 </div> 96 </div>
OLDNEW
« no previous file with comments | « chrome/browser/resources/options/font_settings_overlay.html ('k') | chrome/browser/resources/options/personal_options.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698