| Index: chrome/browser/ui/browser.cc
|
| diff --git a/chrome/browser/ui/browser.cc b/chrome/browser/ui/browser.cc
|
| index f5475ce4754cc8d8c02893072d2d819e0fd6f088..7fc31c7340e7977506dd481e334e3aceb8ada201 100644
|
| --- a/chrome/browser/ui/browser.cc
|
| +++ b/chrome/browser/ui/browser.cc
|
| @@ -3401,10 +3401,11 @@ void Browser::OnStartDownload(TabContents* source, DownloadItem* download) {
|
| CloseContents(source);
|
| }
|
|
|
| -void Browser::ShowPageInfo(Profile* profile,
|
| +void Browser::ShowPageInfo(content::BrowserContext* browser_context,
|
| const GURL& url,
|
| const NavigationEntry::SSLStatus& ssl,
|
| bool show_history) {
|
| + Profile* profile = static_cast<Profile*>(browser_context);
|
| window()->ShowPageInfo(profile, url, ssl, show_history);
|
| }
|
|
|
|
|