| 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 3ac8a1a778bac2fd8b3475bea7ef0a64db03af28..5ba6f9bbcbf0110ec05de83e260abdc5ed1e4735 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -151,6 +151,7 @@
|
| #include "content/public/browser/resource_context.h"
|
| #include "content/public/browser/user_metrics.h"
|
| #include "content/public/browser/worker_service.h"
|
| +#include "content/public/common/associated_interface_provider.h"
|
| #include "content/public/common/child_process_host.h"
|
| #include "content/public/common/connection_filter.h"
|
| #include "content/public/common/content_constants.h"
|
| @@ -1364,6 +1365,11 @@ RenderProcessHostImpl::GetRemoteInterfaces() {
|
| return child_connection_->GetRemoteInterfaces();
|
| }
|
|
|
| +content::AssociatedInterfaceProvider*
|
| +RenderProcessHostImpl::GetAssociatedInterfaceProviderForTesting() {
|
| + return nullptr;
|
| +}
|
| +
|
| std::unique_ptr<base::SharedPersistentMemoryAllocator>
|
| RenderProcessHostImpl::TakeMetricsAllocator() {
|
| return std::move(metrics_allocator_);
|
|
|