| Index: content/browser/mojo/mojo_application_host.h
|
| diff --git a/content/browser/mojo/mojo_application_host.h b/content/browser/mojo/mojo_application_host.h
|
| index fffb59e05c63395ee3e666f4eb4faa249cf7d49c..ebd032e12dbab8411c52980ab4b4ff500c9b0d97 100644
|
| --- a/content/browser/mojo/mojo_application_host.h
|
| +++ b/content/browser/mojo/mojo_application_host.h
|
| @@ -10,7 +10,12 @@
|
| #include "content/common/application_setup.mojom.h"
|
| #include "content/common/mojo/channel_init.h"
|
| #include "content/common/mojo/service_registry_impl.h"
|
| +
|
| +#if defined(USE_CHROME_EDK)
|
| +#include "mojo/edk/embedder/scoped_platform_handle.h"
|
| +#else
|
| #include "third_party/mojo/src/mojo/edk/embedder/scoped_platform_handle.h"
|
| +#endif
|
|
|
| #if defined(OS_ANDROID)
|
| #include "content/browser/mojo/service_registry_android.h"
|
| @@ -56,7 +61,11 @@ class CONTENT_EXPORT MojoApplicationHost {
|
|
|
| private:
|
| ChannelInit channel_init_;
|
| +#if defined(USE_CHROME_EDK)
|
| + mojo::edk::ScopedPlatformHandle client_handle_;
|
| +#else
|
| mojo::embedder::ScopedPlatformHandle client_handle_;
|
| +#endif
|
|
|
| bool did_activate_;
|
|
|
|
|