| 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 0de0be4a4f8c0e815be76ea25ab784bc5e62d71d..4121541eba3de5a5638bac71dc00bd2192a46d5f 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -138,7 +138,6 @@
|
| #include "content/public/browser/content_browser_client.h"
|
| #include "content/public/browser/notification_service.h"
|
| #include "content/public/browser/notification_types.h"
|
| -#include "content/public/browser/owned_interface.h"
|
| #include "content/public/browser/render_process_host_factory.h"
|
| #include "content/public/browser/render_process_host_observer.h"
|
| #include "content/public/browser/render_widget_host.h"
|
| @@ -2101,11 +2100,6 @@ void RenderProcessHostImpl::AddFilter(BrowserMessageFilter* filter) {
|
| channel_->AddFilter(filter->GetFilter());
|
| }
|
|
|
| -void RenderProcessHostImpl::AddOwnedInterface(
|
| - std::unique_ptr<OwnedInterface> impl) {
|
| - owned_interface_impls_.push_back(std::move(impl));
|
| -}
|
| -
|
| bool RenderProcessHostImpl::FastShutdownForPageCount(size_t count) {
|
| if (GetActiveViewCount() == count)
|
| return FastShutdownIfPossible();
|
|
|