diff options
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[]; |