| Index: chrome/browser/ui/chrome_pages.cc
|
| diff --git a/chrome/browser/ui/chrome_pages.cc b/chrome/browser/ui/chrome_pages.cc
|
| index 7faf5a7167c6fe76295fc1129a5dbb8df775708e..d75d548ff35f10f3e65690a7ad80d80403757dd4 100644
|
| --- a/chrome/browser/ui/chrome_pages.cc
|
| +++ b/chrome/browser/ui/chrome_pages.cc
|
| @@ -295,11 +295,20 @@ void ShowSettingsSubPageInTabbedBrowser(Browser* browser,
|
| ShowSingletonTabOverwritingNTP(browser, params);
|
| }
|
|
|
| +void ShowContentSettingsExceptions(Browser* browser,
|
| + ContentSettingsType content_settings_type) {
|
| + ShowSettingsSubPage(
|
| + browser,
|
| + kContentSettingsExceptionsSubPage + std::string(kHashMark) +
|
| + options::ContentSettingsHandler::ContentSettingsTypeToGroupName(
|
| + content_settings_type));
|
| +}
|
| +
|
| void ShowContentSettings(Browser* browser,
|
| ContentSettingsType content_settings_type) {
|
| ShowSettingsSubPage(
|
| browser,
|
| - kContentSettingsExceptionsSubPage + std::string(kHashMark) +
|
| + kContentSettingsSubPage + std::string(kHashMark) +
|
| options::ContentSettingsHandler::ContentSettingsTypeToGroupName(
|
| content_settings_type));
|
| }
|
|
|