| Index: chrome/browser/ui/browser.cc
|
| diff --git a/chrome/browser/ui/browser.cc b/chrome/browser/ui/browser.cc
|
| index 2188455fa56292686368d2f20e6aa6153d342cbe..aa4a76a6c1ee34bf238c4d09f3ccc4d624c88e34 100644
|
| --- a/chrome/browser/ui/browser.cc
|
| +++ b/chrome/browser/ui/browser.cc
|
| @@ -1607,7 +1607,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());
|
| @@ -1615,7 +1614,7 @@ void Browser::RegisterProtocolHandler(WebContents* web_contents,
|
| return;
|
|
|
| ProtocolHandler handler =
|
| - ProtocolHandler::CreateProtocolHandler(protocol, url, title);
|
| + ProtocolHandler::CreateProtocolHandler(protocol, url);
|
|
|
| ProtocolHandlerRegistry* registry =
|
| ProtocolHandlerRegistryFactory::GetForProfile(profile);
|
|
|