| Index: mojo/examples/sample_app/gles2_client_impl.h
|
| diff --git a/mojo/examples/sample_app/gles2_client_impl.h b/mojo/examples/sample_app/gles2_client_impl.h
|
| index 6791504fbc1065495df126f1d31c3ffa9d98a5d9..effba5d6db92c38920987b252dec107b5c4d92dc 100644
|
| --- a/mojo/examples/sample_app/gles2_client_impl.h
|
| +++ b/mojo/examples/sample_app/gles2_client_impl.h
|
| @@ -11,16 +11,15 @@
|
| #include "ui/gfx/point_f.h"
|
| #include "ui/gfx/size.h"
|
|
|
| -namespace mojo {
|
| namespace examples {
|
|
|
| class GLES2ClientImpl {
|
| public:
|
| - explicit GLES2ClientImpl(CommandBufferPtr command_buffer);
|
| + explicit GLES2ClientImpl(mojo::CommandBufferPtr command_buffer);
|
| virtual ~GLES2ClientImpl();
|
|
|
| - void SetSize(const Size& size);
|
| - void HandleInputEvent(const Event& event);
|
| + void SetSize(const mojo::Size& size);
|
| + void HandleInputEvent(const mojo::Event& event);
|
|
|
| private:
|
| void ContextLost();
|
| @@ -45,6 +44,5 @@ class GLES2ClientImpl {
|
| };
|
|
|
| } // namespace examples
|
| -} // namespace mojo
|
|
|
| #endif // MOJO_EXAMPLES_SAMPLE_APP_GLES2_CLIENT_IMPL_H_
|
|
|