Index: gpu/command_buffer/client/cmd_buffer_helper.h |
=================================================================== |
--- gpu/command_buffer/client/cmd_buffer_helper.h (revision 35153) |
+++ gpu/command_buffer/client/cmd_buffer_helper.h (working copy) |
@@ -31,7 +31,7 @@ |
// // commands have been executed. |
class CommandBufferHelper { |
public: |
- explicit CommandBufferHelper(gpu::CommandBuffer* command_buffer); |
+ explicit CommandBufferHelper(CommandBuffer* command_buffer); |
virtual ~CommandBufferHelper(); |
bool Initialize(); |
@@ -170,8 +170,8 @@ |
return (get_ - put_ - 1 + entry_count_) % entry_count_; |
} |
- gpu::CommandBuffer* command_buffer_; |
- ::base::SharedMemory* ring_buffer_; |
+ CommandBuffer* command_buffer_; |
+ Buffer ring_buffer_; |
CommandBufferEntry *entries_; |
int32 entry_count_; |
int32 token_; |