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

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

Issue 7314020: Update UMA user actions parsing, primarily to include WebUI metrics. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix compile Created 9 years, 5 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="advancedPage" class="page" hidden> 1 <div id="advancedPage" class="page" hidden>
2 <h1 i18n-content="advancedPage"></h1> 2 <h1 i18n-content="advancedPage"></h1>
3 <div class="displaytable"> 3 <div class="displaytable">
4 <section> 4 <section>
5 <h3 i18n-content="advancedSectionTitlePrivacy"></h3> 5 <h3 i18n-content="advancedSectionTitlePrivacy"></h3>
6 <div> 6 <div>
7 <div class="section-group"> 7 <div class="section-group">
8 <button id="privacyContentSettingsButton" 8 <button id="privacyContentSettingsButton"
9 i18n-content="privacyContentSettingsButton"></button> 9 i18n-content="privacyContentSettingsButton"></button>
10 <button id="privacyClearDataButton" 10 <button id="privacyClearDataButton"
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 </div> 177 </div>
178 </section> 178 </section>
179 </if> 179 </if>
180 <section> 180 <section>
181 <h3 i18n-content="advancedSectionTitleSecurity"></h3> 181 <h3 i18n-content="advancedSectionTitleSecurity"></h3>
182 <div> 182 <div>
183 <div><button id="certificatesManageButton" 183 <div><button id="certificatesManageButton"
184 i18n-content="certificatesManageButton"></button></div> 184 i18n-content="certificatesManageButton"></button></div>
185 <div class="checkbox"> 185 <div class="checkbox">
186 <label> 186 <label>
187 <input id="sslCheckRevocation" type="checkbox"> 187 <input id="sslCheckRevocation" type="checkbox"
188 pref="ssl.rev_checking.enabled"
189 metric="Options_CheckCertRevocation">
188 <span i18n-content="sslCheckRevocation"></span> 190 <span i18n-content="sslCheckRevocation"></span>
189 </label> 191 </label>
190 </div> 192 </div>
191 <div class="checkbox"> 193 <div class="checkbox">
192 <label> 194 <label>
193 <input id="sslUseSSL3" type="checkbox"> 195 <input id="sslUseSSL3" type="checkbox"
196 pref="ssl.ssl3.enabled" metric="Options_SSL3">
194 <span i18n-content="sslUseSSL3"></span> 197 <span i18n-content="sslUseSSL3"></span>
195 </label> 198 </label>
196 </div> 199 </div>
197 <div class="checkbox"> 200 <div class="checkbox">
198 <label> 201 <label>
199 <input id="sslUseTLS1" type="checkbox"> 202 <input id="sslUseTLS1" type="checkbox"
203 pref="ssl.tls1.enabled" metric="Options_TLS1">
200 <span i18n-content="sslUseTLS1"></span> 204 <span i18n-content="sslUseTLS1"></span>
201 </label> 205 </label>
202 </div> 206 </div>
203 </div> 207 </div>
204 </section> 208 </section>
205 <if expr="not pp_ifdef('chromeos')"> 209 <if expr="not pp_ifdef('chromeos')">
206 <section id="cloud-print-proxy-section"> 210 <section id="cloud-print-proxy-section">
207 <h3 i18n-content="advancedSectionTitleCloudPrint"></h3> 211 <h3 i18n-content="advancedSectionTitleCloudPrint"></h3>
208 <div> 212 <div>
209 <div id="cloudPrintProxyLabel" 213 <div id="cloudPrintProxyLabel"
(...skipping 26 matching lines...) Expand all
236 <div class="checkbox"> 240 <div class="checkbox">
237 <label> 241 <label>
238 <input id="backgroundModeCheckbox" type="checkbox"> 242 <input id="backgroundModeCheckbox" type="checkbox">
239 <span i18n-content="backgroundModeCheckbox"></span> 243 <span i18n-content="backgroundModeCheckbox"></span>
240 </label> 244 </label>
241 </div> 245 </div>
242 </section> 246 </section>
243 </if> 247 </if>
244 </div> 248 </div>
245 </div> 249 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698