| Index: chrome/browser/chrome_content_browser_client.cc
|
| diff --git a/chrome/browser/chrome_content_browser_client.cc b/chrome/browser/chrome_content_browser_client.cc
|
| index bf9b94a64a6200eabe44f96308841f0ae6cfc4da..1e20b66cd6093eb69e38e516795182044eec7d10 100644
|
| --- a/chrome/browser/chrome_content_browser_client.cc
|
| +++ b/chrome/browser/chrome_content_browser_client.cc
|
| @@ -197,7 +197,6 @@
|
| #include "printing/features/features.h"
|
| #include "services/image_decoder/public/interfaces/constants.mojom.h"
|
| #include "services/preferences/public/interfaces/preferences.mojom.h"
|
| -#include "services/resource_coordinator/memory/coordinator/coordinator_impl.h"
|
| #include "services/service_manager/public/cpp/interface_provider.h"
|
| #include "services/service_manager/public/cpp/interface_registry.h"
|
| #include "services/service_manager/public/cpp/service.h"
|
| @@ -3098,13 +3097,6 @@
|
| base::Bind(&metrics::LeakDetectorRemoteController::Create),
|
| ui_task_runner);
|
| #endif
|
| -
|
| - registry->AddInterface(
|
| - base::Bind(
|
| - &memory_instrumentation::CoordinatorImpl::BindCoordinatorRequest,
|
| - base::Unretained(memory_instrumentation::CoordinatorImpl::GetInstance(
|
| - ui_task_runner))),
|
| - ui_task_runner);
|
| }
|
|
|
| void ChromeContentBrowserClient::ExposeInterfacesToMediaService(
|
| @@ -3201,15 +3193,6 @@
|
| registry->AddInterface(
|
| base::Bind(&metrics::CallStackProfileCollector::Create,
|
| metrics::CallStackProfileParams::GPU_PROCESS));
|
| -
|
| - auto ui_task_runner = content::BrowserThread::GetTaskRunnerForThread(
|
| - content::BrowserThread::UI);
|
| - registry->AddInterface(
|
| - base::Bind(
|
| - &memory_instrumentation::CoordinatorImpl::BindCoordinatorRequest,
|
| - base::Unretained(memory_instrumentation::CoordinatorImpl::GetInstance(
|
| - ui_task_runner))),
|
| - ui_task_runner);
|
| }
|
|
|
| void ChromeContentBrowserClient::RegisterInProcessServices(
|
|
|