| Index: chrome/browser/chrome_content_browser_client.cc
|
| ===================================================================
|
| --- chrome/browser/chrome_content_browser_client.cc (revision 117096)
|
| +++ chrome/browser/chrome_content_browser_client.cc (working copy)
|
| @@ -72,6 +72,7 @@
|
| #include "content/browser/gpu/gpu_process_host.h"
|
| #include "content/browser/plugin_process_host.h"
|
| #include "content/browser/renderer_host/render_view_host.h"
|
| +#include "content/browser/renderer_host/resource_dispatcher_host.h"
|
| #include "content/browser/resource_context.h"
|
| #include "content/browser/site_instance.h"
|
| #include "content/browser/ssl/ssl_cert_error_handler.h"
|
| @@ -1088,9 +1089,8 @@
|
| return extension ? extension->name() : std::string();
|
| }
|
|
|
| -ResourceDispatcherHost*
|
| - ChromeContentBrowserClient::GetResourceDispatcherHost() {
|
| - return g_browser_process->resource_dispatcher_host();
|
| +void ChromeContentBrowserClient::ResourceDispatcherHostCreated() {
|
| + return g_browser_process->ResourceDispatcherHostCreated();
|
| }
|
|
|
| ui::Clipboard* ChromeContentBrowserClient::GetClipboard() {
|
|
|