| Index: webkit/common/gpu/context_provider_in_process.cc
|
| diff --git a/webkit/common/gpu/context_provider_in_process.cc b/webkit/common/gpu/context_provider_in_process.cc
|
| index b02d961d70cf109cdf434197fe6dc7b86551df41..ef2bb34d5e7d7614e392f0951564ca2143c85efa 100644
|
| --- a/webkit/common/gpu/context_provider_in_process.cc
|
| +++ b/webkit/common/gpu/context_provider_in_process.cc
|
| @@ -14,6 +14,8 @@
|
| #include "gpu/command_buffer/client/gles2_implementation.h"
|
| #include "webkit/common/gpu/grcontext_for_webgraphicscontext3d.h"
|
|
|
| +using gpu_blink::WebGraphicsContext3DInProcessCommandBufferImpl;
|
| +
|
| namespace webkit {
|
| namespace gpu {
|
|
|
| @@ -151,8 +153,7 @@ class GrContext* ContextProviderInProcess::GrContext() {
|
| if (gr_context_)
|
| return gr_context_->get();
|
|
|
| - gr_context_.reset(
|
| - new webkit::gpu::GrContextForWebGraphicsContext3D(context3d_.get()));
|
| + gr_context_.reset(new GrContextForWebGraphicsContext3D(context3d_.get()));
|
| return gr_context_->get();
|
| }
|
|
|
|
|