diff options
author | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-10 17:00:51 +0000 |
---|---|---|
committer | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-10 17:00:51 +0000 |
commit | be6354f978d56dd8237d3ac9bcf8bb76cdd0cb57 (patch) | |
tree | 09cda907cbfecc852b92e68017bd833156e332a4 /chrome/common/pref_names.cc | |
parent | 86b3ea336404f6248e3d8b63be219c5ba100f9d4 (diff) | |
download | chromium_src-be6354f978d56dd8237d3ac9bcf8bb76cdd0cb57.zip chromium_src-be6354f978d56dd8237d3ac9bcf8bb76cdd0cb57.tar.gz chromium_src-be6354f978d56dd8237d3ac9bcf8bb76cdd0cb57.tar.bz2 |
Couple of tweaks to the cookie prompt dialog:
. Fixes bug that lead to randomly expanding and not (expanded_view_
wasn't in the member initializer list).
. Fixed bug where expanding/collapsing would result in dialog changing
to wrong size.
. Persist expanded state to prefs.
BUG=35092, 35165
TEST=see bugs
Review URL: http://codereview.chromium.org/595014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@38622 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/pref_names.cc')
-rw-r--r-- | chrome/common/pref_names.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc index b33045b..a742996 100644 --- a/chrome/common/pref_names.cc +++ b/chrome/common/pref_names.cc @@ -164,6 +164,9 @@ const wchar_t kDnsStartupPrefetchList[] = L"StartupDNSPrefetchList"; // This list is adaptively grown and pruned. extern const wchar_t kDnsHostReferralList[] = L"HostReferralList"; +// Is the cookie prompt expanded? +extern const wchar_t kCookiePromptExpanded[] = L"cookieprompt.expanded"; + #if defined(OS_LINUX) // Prefs for SSLConfigServicePref. Currently, these are only present on // and used by Linux. |