diff options
Diffstat (limited to 'content/app/mojo/mojo_init.cc')
-rw-r--r-- | content/app/mojo/mojo_init.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/content/app/mojo/mojo_init.cc b/content/app/mojo/mojo_init.cc index 2873d31..090e69e 100644 --- a/content/app/mojo/mojo_init.cc +++ b/content/app/mojo/mojo_init.cc @@ -4,14 +4,16 @@ #include "content/app/mojo/mojo_init.h" -#include "base/logging.h" +#include "base/memory/scoped_ptr.h" #include "mojo/application_manager/application_manager.h" #include "mojo/embedder/embedder.h" +#include "mojo/embedder/simple_platform_support.h" namespace content { void InitializeMojo() { - mojo::embedder::Init(); + mojo::embedder::Init(scoped_ptr<mojo::embedder::PlatformSupport>( + new mojo::embedder::SimplePlatformSupport())); mojo::ApplicationManager::GetInstance(); } |