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

Unified Diff: chrome/browser/resources/options/advanced_options.html

Issue 2830036: Advanced (Under the Hood) options panel code review (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/resources/options.html ('k') | chrome/browser/resources/options/advanced_options.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/options/advanced_options.html
===================================================================
--- chrome/browser/resources/options/advanced_options.html (revision 0)
+++ chrome/browser/resources/options/advanced_options.html (revision 0)
@@ -0,0 +1,128 @@
+<div class="page hidden" id="advancedPage">
+ <h1 i18n-content="advancedPage"></h1>
+ <section>
+ <h3 i18n-content="advancedSectionTitlePrivacy"></h3>
+ <table class="option-control-table">
+ <tr>
+ <button id="privacyContentSettingsButton"
+ i18n-content="privacyContentSettingsButton"></button>
+ <button id="privacyClearDataButton"
+ i18n-content="privacyClearDataButton"></button>
+ </tr>
+ <tr>
+ <div class="section-text"
+ i18n-content="disableServices"></div>
+ <div id="privacyLearnMore">
+ <a target="_blank" i18n-content="privacyLearnMoreLabel"
+ i18n-values="href:privacyLearnMoreURL"></a></div>
+ </tr>
+ <tr id="linkDoctorCheckbox">
+ <td class="option-name"><label><input id="alternateErrorPagesEnabled"
+ pref="alternate_error_pages.enabled" type="checkbox"><span
+ i18n-content="linkDoctorPref"></span></label></td>
+ </tr>
+ <tr id="suggestCheckbox">
+ <td class="option-name"><label><input id="searchSuggestEnabled"
+ pref="search.suggest_enabled" type="checkbox"><span
+ i18n-content="suggestPref"></span></label></td>
+ </tr>
+ <tr id="dnsPrefetchingCheckbox">
+ <td class="option-name"><label><input id="dnsPrefetchingEnabled"
+ pref="dns_prefetching.enabled" type="checkbox"><span
+ i18n-content="networkDNSPrefetchEnabledDescription"></span></label>
+ </td>
+ </tr>
+ <tr id="safeBrowsingCheckbox">
+ <td class="option-name"><label><input id="safeBrowsingEnabled"
+ pref="safebrowsing.enabled" type="checkbox"><span
+ i18n-content="safeBrowsingEnableProtection"></span></label></td>
+ </tr>
+ <!-- TODO(csilv): This option only exists on Chrome builds, needs to be
+ ommitted for Chromium
+ <tr id="metricsReportingCheckbox">
+ <td class="option-name"><label><input id="metricsReportingEnabled"
+ pref="user_experience_metrics.reporting_enabled" type="checkbox">
+ <span i18n-content="enableLogging"></span></label></td>
+ </tr>-->
+ </table>
+ </section>
+ <section>
+ <h3 i18n-content="advancedSectionTitleNetwork"></h3>
+ <table class="option-control-table">
+ <tr>
+ <div class="section-text"
+ i18n-content="proxiesLabel"></div>
+ </tr>
+ <tr>
+ <button id="proxiesConfigureButton"
+ i18n-content="proxiesConfigureButton"></button>
+ </tr>
+ </table>
+ </section>
+ <section>
+ <h3 i18n-content="advancedSectionTitleTranslate"></h3>
+ <table class="option-control-table">
+ <tr id="enableTranslateCheckbox">
+ <td class="option-name"><label><input id="enableTranslate"
+ pref="translate.enabled" type="checkbox"><span
+ i18n-content="translateEnableTranslate"></span></label></td>
+ </tr>
+ </table>
+ </section>
+ <section>
+ <h3 i18n-content="downloadLocationGroupName"></h3>
+ <table class="option-control-table">
+ <tr>
+ <div class="section_text"
+ i18n-content="downloadLocationBrowseTitle"></div>
+ <input id="downloadLocationPath" type="text" size="80" disabled>
+ <button id="downloadLocationBrowseButton"
+ i18n-content="downloadLocationBrowseButton"></button>
+ </tr>
+ <tr id="promptForDownloadCheckbox">
+ <td class="option-name"><label><input id="promptForDownload"
+ pref="download.prompt_for_download" type="checkbox"><span
+ i18n-content="downloadLocationAskForSaveLocation"></span></label>
+ </td>
+ </tr>
+ <tr>
+ <div class="section-text"
+ i18n-content="autoOpenFileTypesInfo"></div>
+ <button id="autoOpenFileTypesResetToDefault"
+ i18n-content="autoOpenFileTypesResetToDefault"></button>
+ </tr>
+ </table>
+ </section>
+ <section>
+ <h3 i18n-content="advancedSectionTitleContent"></h3>
+ <table class="option-control-table">
+ <tr id="tabsToLinksCheckbox">
+ <td class="option-name"><label><input id="tabsToLinksPref"
+ pref="webkit.webprefs.tabs_to_links" type="checkbox"><span
+ i18n-content="tabsToLinksPref"></span></label></td>
+ </tr>
+ <tr id="promptForDownloadCheckbox">
+ <button id="fontSettingsConfigureFontsOnlyButton"
+ i18n-content="fontSettingsConfigureFontsOnlyButton"></button>
+ </tr>
+ </table>
+ </section>
+ <section>
+ <h3 i18n-content="advancedSectionTitleSecurity"></h3>
+ <table class="option-control-table">
+ <tr>
+ <div class="section_text"
+ i18n-content="certificatesLabel"></div>
+ <button id="certificatesManageButton"
+ i18n-content="certificatesManageButton"></button>
+ </tr>
+ <!-- TODO(csilv): Not supported on all platforms
+ <tr id="sslCheckRevocationCheckbox">
+ <td class="option-name"><label><input id="sslCheckRevocation"
+ pref="ssl.rev_checking.enabled" type="checkbox"><span
+ i18n-content="sslCheckRevocation"></span></label></td>
+ </tr>
+ -->
+ </table>
+ </section>
+</div>
Property changes on: chrome/browser/resources/options/advanced_options.html
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « chrome/browser/resources/options.html ('k') | chrome/browser/resources/options/advanced_options.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698