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