| Index: webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h
|
| diff --git a/webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h b/webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h
|
| index 0d5c177f7ad20fd517d04ff90b2d478aea7a10c9..f6a5dca247352f329511c7e256e4dc2c008d5167 100644
|
| --- a/webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h
|
| +++ b/webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h
|
| @@ -48,7 +48,8 @@ class WEBKIT_GPU_EXPORT WebGraphicsContext3DInProcessCommandBufferImpl
|
| static WebGraphicsContext3DInProcessCommandBufferImpl*
|
| CreateViewContext(
|
| const WebKit::WebGraphicsContext3D::Attributes& attributes,
|
| - gfx::AcceleratedWidget window);
|
| + gfx::AcceleratedWidget window,
|
| + bool use_virtualized_gl_context_if_possible);
|
|
|
| static WebGraphicsContext3DInProcessCommandBufferImpl*
|
| CreateOffscreenContext(
|
| @@ -535,7 +536,8 @@ class WEBKIT_GPU_EXPORT WebGraphicsContext3DInProcessCommandBufferImpl
|
| WebGraphicsContext3DInProcessCommandBufferImpl(
|
| const WebKit::WebGraphicsContext3D::Attributes& attributes,
|
| bool is_offscreen,
|
| - gfx::AcceleratedWidget window);
|
| + gfx::AcceleratedWidget window,
|
| + bool use_virtualized_gl_context_if_possible);
|
|
|
| // SwapBuffers callback.
|
| void OnSwapBuffersComplete();
|
| @@ -552,6 +554,8 @@ class WEBKIT_GPU_EXPORT WebGraphicsContext3DInProcessCommandBufferImpl
|
| // Only used when not offscreen.
|
| gfx::AcceleratedWidget window_;
|
|
|
| + bool use_virtualized_gl_context_if_possible_;
|
| +
|
| bool initialized_;
|
| bool initialize_failed_;
|
|
|
|
|