| Index: mojo/examples/compositor_app/compositor_app.cc
|
| diff --git a/mojo/examples/compositor_app/compositor_app.cc b/mojo/examples/compositor_app/compositor_app.cc
|
| index 2865fb99a30752322dbf1d372ff26218d5694f1d..d2547fde3afeb565fb32abf26d02d1495a8736a9 100644
|
| --- a/mojo/examples/compositor_app/compositor_app.cc
|
| +++ b/mojo/examples/compositor_app/compositor_app.cc
|
| @@ -6,10 +6,8 @@
|
| #include <string>
|
|
|
| #include "base/message_loop/message_loop.h"
|
| -#include "mojo/common/bindings_support_impl.h"
|
| #include "mojo/examples/compositor_app/compositor_host.h"
|
| #include "mojo/examples/compositor_app/gles2_client_impl.h"
|
| -#include "mojo/public/bindings/lib/bindings_support.h"
|
| #include "mojo/public/bindings/lib/remote_ptr.h"
|
| #include "mojo/public/gles2/gles2.h"
|
| #include "mojo/public/system/core.h"
|
| @@ -98,8 +96,6 @@ class SampleApp : public ShellClient {
|
| extern "C" SAMPLE_APP_EXPORT MojoResult CDECL MojoMain(
|
| MojoHandle shell_handle) {
|
| base::MessageLoop loop;
|
| - mojo::common::BindingsSupportImpl bindings_support_impl;
|
| - mojo::BindingsSupport::Set(&bindings_support_impl);
|
| MojoGLES2Initialize();
|
|
|
| mojo::examples::SampleApp app(
|
| @@ -107,6 +103,5 @@ extern "C" SAMPLE_APP_EXPORT MojoResult CDECL MojoMain(
|
| loop.Run();
|
|
|
| MojoGLES2Terminate();
|
| - mojo::BindingsSupport::Set(NULL);
|
| return MOJO_RESULT_OK;
|
| }
|
|
|