diff options
author | mlerman <mlerman@chromium.org> | 2014-08-26 11:44:59 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-08-26 18:46:56 +0000 |
commit | aa7e9b61d69dfa8e0a1557d900037bfb8b1e6e78 (patch) | |
tree | 7bf6aa6e2419d918a0d503ce8dd834c0a8bf7029 | |
parent | 0d0a1e97194c6e9ea93c0808b0d1e5ac567ba6b0 (diff) | |
download | chromium_src-aa7e9b61d69dfa8e0a1557d900037bfb8b1e6e78.zip chromium_src-aa7e9b61d69dfa8e0a1557d900037bfb8b1e6e78.tar.gz chromium_src-aa7e9b61d69dfa8e0a1557d900037bfb8b1e6e78.tar.bz2 |
Make Reset Settings section not be hidden by default.
The Reset Settings section in Advanced Settings used to be hidden by
default, and then enabled if the profile was OffTheRecord. CL
https://codereview.chromium.org/467363003 changed this setting to be
hidden if guest mode is set, but did not ever remove the hidden flag.
Thus, it was only ever hidden.
In this CL the Reset Settings section is now visible by default. It
still gets hidden by guest mode.
BUG=407493
Review URL: https://codereview.chromium.org/505143002
Cr-Commit-Position: refs/heads/master@{#291948}
-rw-r--r-- | chrome/browser/resources/options/browser_options.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/resources/options/browser_options.html b/chrome/browser/resources/options/browser_options.html index 425c2f2..9b667b5 100644 --- a/chrome/browser/resources/options/browser_options.html +++ b/chrome/browser/resources/options/browser_options.html @@ -961,7 +961,7 @@ </div> </section> </if> - <section id="reset-profile-settings-section" hidden> + <section id="reset-profile-settings-section"> <h3 i18n-content="resetProfileSettingsSectionTitle"></h3> <div> <span class="settings-row" i18n-content="resetProfileSettingsDescription"> |