Index: content/browser/renderer_host/render_process_host_impl.cc |
diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc |
index 6fee0a366793b078ddf234adb06a2cfbfb7c801f..764fb2ca519548a5a8a1840c5d82ea5966baa13c 100644 |
--- a/content/browser/renderer_host/render_process_host_impl.cc |
+++ b/content/browser/renderer_host/render_process_host_impl.cc |
@@ -85,7 +85,7 @@ |
#include "content/browser/media/capture/image_capture_impl.h" |
#include "content/browser/media/media_internals.h" |
#include "content/browser/media/midi_host.h" |
-#include "content/browser/memory/memory_coordinator.h" |
+#include "content/browser/memory/memory_coordinator_impl.h" |
#include "content/browser/memory/memory_message_filter.h" |
#include "content/browser/message_port_message_filter.h" |
#include "content/browser/mime_registry_impl.h" |
@@ -449,8 +449,8 @@ class SessionStorageHolder : public base::SupportsUserData::Data { |
void CreateMemoryCoordinatorHandle( |
int render_process_id, |
mojom::MemoryCoordinatorHandleRequest request) { |
- MemoryCoordinator::GetInstance()->CreateHandle(render_process_id, |
- std::move(request)); |
+ MemoryCoordinatorImpl::GetInstance()->CreateHandle(render_process_id, |
+ std::move(request)); |
} |
} // namespace |