| 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 b9f0d3a60af187b13faaef4751778f0f7eba4cf5..01b2a3700c7520a17c63654687a916c80eef33b4 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -13,6 +13,7 @@
|
| #include <utility>
|
| #include <vector>
|
|
|
| +#include "base/base_features.h"
|
| #include "base/base_switches.h"
|
| #include "base/bind.h"
|
| #include "base/bind_helpers.h"
|
| @@ -156,7 +157,6 @@
|
| #include "content/public/common/child_process_host.h"
|
| #include "content/public/common/connection_filter.h"
|
| #include "content/public/common/content_constants.h"
|
| -#include "content/public/common/content_features.h"
|
| #include "content/public/common/content_switches.h"
|
| #include "content/public/common/mojo_channel_switches.h"
|
| #include "content/public/common/process_type.h"
|
| @@ -1262,7 +1262,7 @@ void RenderProcessHostImpl::RegisterMojoInterfaces() {
|
| base::Bind(&BroadcastChannelProvider::Connect,
|
| base::Unretained(
|
| storage_partition_impl_->GetBroadcastChannelProvider())));
|
| - if (base::FeatureList::IsEnabled(features::kMemoryCoordinator)) {
|
| + if (base::FeatureList::IsEnabled(base::features::kMemoryCoordinator)) {
|
| AddUIThreadInterface(
|
| registry.get(), base::Bind(&CreateMemoryCoordinatorHandle, GetID()));
|
| }
|
|
|