diff options
Diffstat (limited to 'chrome/browser/browser.cc')
-rw-r--r-- | chrome/browser/browser.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/chrome/browser/browser.cc b/chrome/browser/browser.cc index 8567bd0..e1f5ff4 100644 --- a/chrome/browser/browser.cc +++ b/chrome/browser/browser.cc @@ -1989,12 +1989,11 @@ void Browser::ConfirmAddSearchProvider(const TemplateURL* template_url, window()->ConfirmAddSearchProvider(template_url, profile); } -void Browser::ShowPageInfo(gfx::NativeView parent, - Profile* profile, +void Browser::ShowPageInfo(Profile* profile, const GURL& url, const NavigationEntry::SSLStatus& ssl, bool show_history) { - window()->ShowPageInfo(parent, profile, url, ssl, show_history); + window()->ShowPageInfo(profile, url, ssl, show_history); } /////////////////////////////////////////////////////////////////////////////// |