| Index: chrome/browser/ui/browser_commands.cc
|
| diff --git a/chrome/browser/ui/browser_commands.cc b/chrome/browser/ui/browser_commands.cc
|
| index 93c476b135d6e7a401da05eada120d6a2d222f9f..be8f17a9cf9c28427c18133f551a5cb3401ab2f3 100644
|
| --- a/chrome/browser/ui/browser_commands.cc
|
| +++ b/chrome/browser/ui/browser_commands.cc
|
| @@ -641,11 +641,11 @@ void ShowPageInfo(Browser* browser,
|
| TabContents* tab_contents = TabContents::FromWebContents(web_contents);
|
|
|
| if (CommandLine::ForCurrentProcess()->HasSwitch(
|
| - switches::kEnableWebsiteSettings)) {
|
| + switches::kDisableWebsiteSettings)) {
|
| + browser->window()->ShowPageInfo(web_contents, url, ssl, show_history);
|
| + } else {
|
| browser->window()->ShowWebsiteSettings(
|
| profile, tab_contents, url, ssl, show_history);
|
| - } else {
|
| - browser->window()->ShowPageInfo(web_contents, url, ssl, show_history);
|
| }
|
| }
|
|
|
|
|