| Index: mojo/gpu/gl_context.h
|
| diff --git a/mojo/gpu/gl_context.h b/mojo/gpu/gl_context.h
|
| index a557fdb83c666f6d28ffcbe6b2856986b6d3252a..8b0de9bd4fbcfa7b063df418e2e2c436863fbfd1 100644
|
| --- a/mojo/gpu/gl_context.h
|
| +++ b/mojo/gpu/gl_context.h
|
| @@ -33,7 +33,7 @@ class GLContext {
|
|
|
| // Creates a GL context from a command buffer.
|
| static base::WeakPtr<GLContext> CreateFromCommandBuffer(
|
| - CommandBufferPtr command_buffer);
|
| + InterfaceHandle<CommandBuffer> command_buffer);
|
|
|
| void MakeCurrent();
|
| bool IsCurrent();
|
| @@ -43,7 +43,7 @@ class GLContext {
|
| void RemoveObserver(Observer* observer);
|
|
|
| private:
|
| - explicit GLContext(CommandBufferPtr command_buffer);
|
| + explicit GLContext(InterfaceHandle<CommandBuffer> command_buffer);
|
| ~GLContext();
|
|
|
| static void ContextLostThunk(void* self);
|
|
|