| Index: content/browser/renderer_host/render_process_host_impl.h
|
| diff --git a/content/browser/renderer_host/render_process_host_impl.h b/content/browser/renderer_host/render_process_host_impl.h
|
| index 2c434ad36aa8fadfe7209761802d2e4fd7e6864a..2140f1e6d2ba809d3891b38479bb54a422a4b2de 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.h
|
| +++ b/content/browser/renderer_host/render_process_host_impl.h
|
| @@ -30,6 +30,7 @@
|
| #include "ipc/ipc_channel_proxy.h"
|
| #include "ipc/ipc_platform_file.h"
|
| #include "mojo/public/cpp/bindings/interface_ptr.h"
|
| +#include "services/shell/public/interfaces/shell_client.mojom.h"
|
| #include "ui/gfx/gpu_memory_buffer.h"
|
| #include "ui/gl/gpu_switching_observer.h"
|
|
|
| @@ -156,7 +157,8 @@ class CONTENT_EXPORT RenderProcessHostImpl
|
| #endif
|
| void ResumeDeferredNavigation(const GlobalRequestID& request_id) override;
|
| void NotifyTimezoneChange(const std::string& timezone) override;
|
| - ServiceRegistry* GetServiceRegistry() override;
|
| + shell::InterfaceRegistry* GetInterfaceRegistry() override;
|
| + shell::InterfaceProvider* GetRemoteInterfaces() override;
|
| shell::Connection* GetChildConnection() override;
|
| std::unique_ptr<base::SharedPersistentMemoryAllocator> TakeMetricsAllocator()
|
| override;
|
| @@ -371,7 +373,7 @@ class CONTENT_EXPORT RenderProcessHostImpl
|
| std::string child_token_;
|
|
|
| std::unique_ptr<MojoChildConnection> mojo_child_connection_;
|
| - std::unique_ptr<MojoApplicationHost> mojo_application_host_;
|
| + shell::mojom::ShellClientPtr test_shell_client_;
|
|
|
| // The registered IPC listener objects. When this list is empty, we should
|
| // delete ourselves.
|
|
|