| Index: ui/ozone/public/ipc_init_helper_mojo.h
|
| diff --git a/ui/ozone/public/ipc_init_helper_mojo.h b/ui/ozone/public/ipc_init_helper_mojo.h
|
| index c7754be93b93d7c9ff958c7d4ee318542553eb39..4264d327632410f835f99b40429f1358105a7133 100644
|
| --- a/ui/ozone/public/ipc_init_helper_mojo.h
|
| +++ b/ui/ozone/public/ipc_init_helper_mojo.h
|
| @@ -5,23 +5,26 @@
|
| #ifndef UI_OZONE_PUBLIC_IPC_INIT_HELPER_MOJO_H_
|
| #define UI_OZONE_PUBLIC_IPC_INIT_HELPER_MOJO_H_
|
|
|
| -#include "mojo/public/cpp/application/application_impl.h"
|
| -#include "mojo/public/cpp/application/service_provider_impl.h"
|
| #include "ui/ozone/public/ipc_init_helper_ozone.h"
|
|
|
| +namespace mojo {
|
| +class ServiceProviderImpl;
|
| +class Shell;
|
| +} // namespace mojo
|
| +
|
| namespace ui {
|
|
|
| class IpcInitHelperMojo : public IpcInitHelperOzone {
|
| public:
|
| - virtual void HostInitialize(mojo::ApplicationImpl* application) = 0;
|
| - virtual bool HostConfigureIncomingConnection(
|
| + virtual void HostInitialize(mojo::Shell* shell) = 0;
|
| + virtual bool HostAcceptConnection(
|
| mojo::ServiceProviderImpl* service_provider_impl) = 0;
|
|
|
| - virtual void GpuInitialize(mojo::ApplicationImpl* application) = 0;
|
| - virtual bool GpuConfigureIncomingConnection(
|
| + virtual void GpuInitialize(mojo::Shell* shell) = 0;
|
| + virtual bool GpuAcceptConnection(
|
| mojo::ServiceProviderImpl* service_provider_impl) = 0;
|
| };
|
|
|
| } // namespace ui
|
|
|
| -#endif
|
| +#endif // UI_OZONE_PUBLIC_IPC_INIT_HELPER_MOJO_H_
|
|
|