| Index: chrome/browser/chrome_content_browser_client.h
 | 
| diff --git a/chrome/browser/chrome_content_browser_client.h b/chrome/browser/chrome_content_browser_client.h
 | 
| index 5d6d70bb5cc80005b2a4a5296e0deab509674678..c5559c7cf2e3cf30b100f2b9c561b9b9101d33fd 100644
 | 
| --- a/chrome/browser/chrome_content_browser_client.h
 | 
| +++ b/chrome/browser/chrome_content_browser_client.h
 | 
| @@ -64,32 +64,15 @@ class ChromeContentBrowserClient : public content::ContentBrowserClient {
 | 
|                                         const GURL& effective_url) OVERRIDE;
 | 
|    virtual GURL GetEffectiveURL(content::BrowserContext* browser_context,
 | 
|                                 const GURL& url) OVERRIDE;
 | 
| +  virtual std::vector<std::string> GetAdditionalWebUISchemes() OVERRIDE;
 | 
|    virtual net::URLRequestContextGetter* CreateRequestContext(
 | 
|        content::BrowserContext* browser_context,
 | 
| -      scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
 | 
| -          blob_protocol_handler,
 | 
| -      scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
 | 
| -          file_system_protocol_handler,
 | 
| -      scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
 | 
| -          developer_protocol_handler,
 | 
| -      scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
 | 
| -          chrome_protocol_handler,
 | 
| -      scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
 | 
| -          chrome_devtools_protocol_handler) OVERRIDE;
 | 
| +      content::ProtocolHandlerMap* protocol_handlers) OVERRIDE;
 | 
|    virtual net::URLRequestContextGetter* CreateRequestContextForStoragePartition(
 | 
|        content::BrowserContext* browser_context,
 | 
|        const base::FilePath& partition_path,
 | 
|        bool in_memory,
 | 
| -      scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
 | 
| -          blob_protocol_handler,
 | 
| -      scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
 | 
| -          file_system_protocol_handler,
 | 
| -      scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
 | 
| -          developer_protocol_handler,
 | 
| -      scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
 | 
| -          chrome_protocol_handler,
 | 
| -      scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
 | 
| -          chrome_devtools_protocol_handler) OVERRIDE;
 | 
| +      content::ProtocolHandlerMap* protocol_handlers) OVERRIDE;
 | 
|    virtual bool IsHandledURL(const GURL& url) OVERRIDE;
 | 
|    virtual bool IsSuitableHost(content::RenderProcessHost* process_host,
 | 
|                                const GURL& url) OVERRIDE;
 | 
| 
 |