diff options
author | zelidrag@chromium.org <zelidrag@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-26 21:00:54 +0000 |
---|---|---|
committer | zelidrag@chromium.org <zelidrag@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-26 21:00:54 +0000 |
commit | a592615a53d4c9a75f9dfa07b18b64039eebac48 (patch) | |
tree | 7f459015fc3f6eb7b17c7a2c2fb3557bc6359da1 /chrome/common | |
parent | 7b0f8e41468fb9cccf9d5304258e6cbe91ccea38 (diff) | |
download | chromium_src-a592615a53d4c9a75f9dfa07b18b64039eebac48.zip chromium_src-a592615a53d4c9a75f9dfa07b18b64039eebac48.tar.gz chromium_src-a592615a53d4c9a75f9dfa07b18b64039eebac48.tar.bz2 |
Content Settings dialog and related Options UI changes.
BUG=32719
TEST=none
Review URL: http://codereview.chromium.org/554045
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@37153 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/pref_names.cc | 5 | ||||
-rw-r--r-- | chrome/common/pref_names.h | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc index d2cca53d..3824985 100644 --- a/chrome/common/pref_names.cc +++ b/chrome/common/pref_names.cc @@ -514,6 +514,11 @@ const wchar_t kSafeBrowsingWrappedKey[] = L"safe_browsing.wrapped_key"; // last visited the options window. const wchar_t kOptionsWindowLastTabIndex[] = L"options_window.last_tab_index"; +// Integer that specifies the index of the tab the user was on when they +// last visited the content settings window. +const wchar_t kContentSettingsWindowLastTabIndex[] = + L"content_settings_window.last_tab_index"; + // The mere fact that this pref is registered signals that we should show the // First Run Search Information bubble when the first browser window appears. // This preference is only registered by the first-run procedure. diff --git a/chrome/common/pref_names.h b/chrome/common/pref_names.h index 1627d31..e81dd00 100644 --- a/chrome/common/pref_names.h +++ b/chrome/common/pref_names.h @@ -192,6 +192,7 @@ extern const wchar_t kSafeBrowsingClientKey[]; extern const wchar_t kSafeBrowsingWrappedKey[]; extern const wchar_t kOptionsWindowLastTabIndex[]; +extern const wchar_t kContentSettingsWindowLastTabIndex[]; extern const wchar_t kShouldShowFirstRunBubble[]; extern const wchar_t kShouldUseOEMFirstRunBubble[]; extern const wchar_t kShouldShowWelcomePage[]; |