In Chrome M23 the page info bubble was replaced by the website settings UI (aka website permissions UI/bubble). This CL removed the code of the old page info bubble and renames ShowPageInfo methods to ShowWebsiteSettings.


BUG=161987

Review URL: https://chromiumcodereview.appspot.com/11867019

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@178595 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/chrome/browser/ui/browser_commands.h b/chrome/browser/ui/browser_commands.h
index 0a3ae18..41a7f914 100644
--- a/chrome/browser/ui/browser_commands.h
+++ b/chrome/browser/ui/browser_commands.h
@@ -100,11 +100,11 @@
 void SavePage(Browser* browser);
 bool CanSavePage(const Browser* browser);
 void ShowFindBar(Browser* browser);
-void ShowPageInfo(Browser* browser,
-                  content::WebContents* web_contents,
-                  const GURL& url,
-                  const content::SSLStatus& ssl,
-                  bool show_history);
+void ShowWebsiteSettings(Browser* browser,
+                         content::WebContents* web_contents,
+                         const GURL& url,
+                         const content::SSLStatus& ssl,
+                         bool show_history);
 void ShowChromeToMobileBubble(Browser* browser);
 void Print(Browser* browser);
 bool CanPrint(const Browser* browser);