| Index: gpu/command_buffer/client/gl_in_process_context.cc
|
| diff --git a/gpu/command_buffer/client/gl_in_process_context.cc b/gpu/command_buffer/client/gl_in_process_context.cc
|
| index 2b5e559ba64fd5c1386c15c183131f03ef7df3ed..3a91eae2848850cf3814308c5599b7157e38fd6a 100644
|
| --- a/gpu/command_buffer/client/gl_in_process_context.cc
|
| +++ b/gpu/command_buffer/client/gl_in_process_context.cc
|
| @@ -52,7 +52,7 @@ class GLInProcessContextImpl
|
| virtual ~GLInProcessContextImpl();
|
|
|
| bool Initialize(
|
| - scoped_refptr<gfx::GLSurface> surface,
|
| + gfx::GLSurface* surface,
|
| bool is_offscreen,
|
| bool use_global_share_group,
|
| GLInProcessContext* share_context,
|
| @@ -120,7 +120,7 @@ void GLInProcessContextImpl::OnContextLost() {
|
| }
|
|
|
| bool GLInProcessContextImpl::Initialize(
|
| - scoped_refptr<gfx::GLSurface> surface,
|
| + gfx::GLSurface* surface,
|
| bool is_offscreen,
|
| bool use_global_share_group,
|
| GLInProcessContext* share_context,
|
| @@ -339,7 +339,7 @@ GLInProcessContext* GLInProcessContext::CreateContext(
|
|
|
| // static
|
| GLInProcessContext* GLInProcessContext::CreateWithSurface(
|
| - scoped_refptr<gfx::GLSurface> surface,
|
| + gfx::GLSurface* surface,
|
| scoped_refptr<gpu::InProcessCommandBuffer::Service> service,
|
| GLInProcessContext* share_context,
|
| const GLInProcessContextAttribs& attribs,
|
|
|