Chromium Code Reviews| Index: content/public/browser/content_browser_client.cc |
| =================================================================== |
| --- content/public/browser/content_browser_client.cc (revision 265252) |
| +++ content/public/browser/content_browser_client.cc (working copy) |
| @@ -67,11 +67,16 @@ |
| return true; |
| } |
| -bool ContentBrowserClient::IsSuitableHost(RenderProcessHost* process_host, |
| - const GURL& site_url) { |
| +bool ContentBrowserClient::IsSuitableHost( |
| + RenderProcessHost* process_host, |
| + const GURL& site_url) { |
|
Charlie Reis
2014/05/07 17:21:32
This change looks unnecessary.
tburkard
2014/05/07 18:34:27
Done.
|
| return true; |
| } |
| +bool ContentBrowserClient::MayReuseHost(RenderProcessHost* process_host) { |
| + return true; |
| +} |
| + |
| bool ContentBrowserClient::ShouldTryToUseExistingProcessHost( |
| BrowserContext* browser_context, const GURL& url) { |
| return false; |