diff options
Diffstat (limited to 'webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h')
-rw-r--r-- | webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h b/webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h index 08c8df1..dc51c80 100644 --- a/webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h +++ b/webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h @@ -9,7 +9,7 @@ #include <set> #include "base/hash_tables.h" -#include "base/memory/scoped_ptr.h" +#include "base/memory/ref_counted.h" #include "third_party/angle/include/GLSLANG/ShaderLang.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebGraphicsContext3D.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebString.h" @@ -464,8 +464,8 @@ class WebGraphicsContext3DInProcessCommandBufferImpl : public WebGraphicsContext std::list<WGC3Denum> synthetic_errors_list_; std::set<WGC3Denum> synthetic_errors_set_; - scoped_ptr<gfx::GLContext> gl_context_; - scoped_ptr<gfx::GLSurface> gl_surface_; + scoped_refptr<gfx::GLContext> gl_context_; + scoped_refptr<gfx::GLSurface> gl_surface_; ShaderSourceMap shader_source_map_; |