| Index: gpu/command_buffer/client/gles2_implementation.h
|
| diff --git a/gpu/command_buffer/client/gles2_implementation.h b/gpu/command_buffer/client/gles2_implementation.h
|
| index 55cd0a14b748d0e758d37bea20744472ab36e94f..c135e1409bf91de9834e29f2f7253ec9b6efe492 100644
|
| --- a/gpu/command_buffer/client/gles2_implementation.h
|
| +++ b/gpu/command_buffer/client/gles2_implementation.h
|
| @@ -598,7 +598,7 @@ class GLES2_IMPL_EXPORT GLES2Implementation
|
| // IdAllocators for objects that can't be shared among contexts.
|
| // For now, used only for Queries. TODO(hj.r.chung) Should be added for
|
| // Framebuffer and Vertex array objects.
|
| - IdAllocatorInterface* GetIdAllocator(int id_namespace) const;
|
| + IdAllocator* GetIdAllocator(int id_namespace) const;
|
|
|
| void FinishHelper();
|
|
|
| @@ -771,7 +771,7 @@ class GLES2_IMPL_EXPORT GLES2Implementation
|
| scoped_ptr<QueryTracker> query_tracker_;
|
| typedef std::map<GLuint, QueryTracker::Query*> QueryMap;
|
| QueryMap current_queries_;
|
| - scoped_ptr<IdAllocatorInterface> query_id_allocator_;
|
| + scoped_ptr<IdAllocator> query_id_allocator_;
|
|
|
| scoped_ptr<BufferTracker> buffer_tracker_;
|
|
|
|
|