Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(190)

Unified Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 2579233002: Merge MemoryCoordinator and MemoryCoordinatorImpl into one class (Closed)
Patch Set: addressed comments Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
« no previous file with comments | « content/browser/memory/memory_monitor_android.cc ('k') | content/browser/service_worker/service_worker_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698