Index: chrome/browser/ui/browser.cc |
diff --git a/chrome/browser/ui/browser.cc b/chrome/browser/ui/browser.cc |
index 141171682af4670513c70420410e98df986bd513..a06b09978ba08473f71048e1826bc32514a40465 100644 |
--- a/chrome/browser/ui/browser.cc |
+++ b/chrome/browser/ui/browser.cc |
@@ -1617,7 +1617,6 @@ bool Browser::IsFullscreenForTabOrPending( |
void Browser::RegisterProtocolHandler(WebContents* web_contents, |
const std::string& protocol, |
const GURL& url, |
- const base::string16& title, |
bool user_gesture) { |
Profile* profile = |
Profile::FromBrowserContext(web_contents->GetBrowserContext()); |
@@ -1625,7 +1624,7 @@ void Browser::RegisterProtocolHandler(WebContents* web_contents, |
return; |
ProtocolHandler handler = |
- ProtocolHandler::CreateProtocolHandler(protocol, url, title); |
+ ProtocolHandler::CreateProtocolHandler(protocol, url); |
ProtocolHandlerRegistry* registry = |
ProtocolHandlerRegistryFactory::GetForProfile(profile); |