| 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 76e994ddcbe142188135d1c8ab572d446718a101..834824cc812576c21a16ed94de39bdbd44292e50 100644
 | 
| --- a/chrome/browser/chrome_content_browser_client.h
 | 
| +++ b/chrome/browser/chrome_content_browser_client.h
 | 
| @@ -81,12 +81,14 @@ class ChromeContentBrowserClient : public content::ContentBrowserClient {
 | 
|        std::vector<std::string>* additional_schemes) OVERRIDE;
 | 
|    virtual net::URLRequestContextGetter* CreateRequestContext(
 | 
|        content::BrowserContext* browser_context,
 | 
| -      content::ProtocolHandlerMap* protocol_handlers) OVERRIDE;
 | 
| +      content::ProtocolHandlerMap* protocol_handlers,
 | 
| +      content::ProtocolHandlerScopedVector protocol_interceptors) OVERRIDE;
 | 
|    virtual net::URLRequestContextGetter* CreateRequestContextForStoragePartition(
 | 
|        content::BrowserContext* browser_context,
 | 
|        const base::FilePath& partition_path,
 | 
|        bool in_memory,
 | 
| -      content::ProtocolHandlerMap* protocol_handlers) OVERRIDE;
 | 
| +      content::ProtocolHandlerMap* protocol_handlers,
 | 
| +      content::ProtocolHandlerScopedVector protocol_interceptors) OVERRIDE;
 | 
|    virtual bool IsHandledURL(const GURL& url) OVERRIDE;
 | 
|    virtual bool CanCommitURL(content::RenderProcessHost* process_host,
 | 
|                              const GURL& url) OVERRIDE;
 | 
| 
 |