Index: content/browser/renderer_host/mock_render_process_host.cc |
=================================================================== |
--- content/browser/renderer_host/mock_render_process_host.cc (revision 112775) |
+++ content/browser/renderer_host/mock_render_process_host.cc (working copy) |
@@ -9,16 +9,18 @@ |
#include "base/time.h" |
#include "content/browser/child_process_security_policy.h" |
#include "content/browser/renderer_host/render_process_host_impl.h" |
-#include "content/common/child_process_host.h" |
+#include "content/common/child_process_host_impl.h" |
#include "content/public/browser/notification_service.h" |
#include "content/public/browser/notification_types.h" |
+using content::ChildProcessHostImpl; |
+ |
MockRenderProcessHost::MockRenderProcessHost( |
content::BrowserContext* browser_context) |
: transport_dib_(NULL), |
bad_msg_count_(0), |
factory_(NULL), |
- id_(ChildProcessHost::GenerateChildProcessUniqueId()), |
+ id_(ChildProcessHostImpl::GenerateChildProcessUniqueId()), |
browser_context_(browser_context), |
max_page_id_(-1), |
fast_shutdown_started_(false) { |