| Index: gpu/command_buffer/service/in_process_command_buffer.h
|
| diff --git a/gpu/command_buffer/service/in_process_command_buffer.h b/gpu/command_buffer/service/in_process_command_buffer.h
|
| index 7c84db0e0b05603eb4bca092ad1ed4ad5f9679d7..4859760d363864166c274c357dfadb71fab28c27 100644
|
| --- a/gpu/command_buffer/service/in_process_command_buffer.h
|
| +++ b/gpu/command_buffer/service/in_process_command_buffer.h
|
| @@ -126,6 +126,8 @@ class GPU_EXPORT InProcessCommandBuffer : public CommandBuffer,
|
| uint32 CreateStreamTexture(uint32 texture_id) override;
|
| void SetLock(base::Lock*) override;
|
| bool IsGpuChannelLost() override;
|
| + CommandBufferNamespace GetNamespaceID() const override;
|
| + uint64_t GetCommandBufferID() const override;
|
|
|
| // The serializer interface to the GPU service (i.e. thread).
|
| class Service {
|
| @@ -228,6 +230,8 @@ class GPU_EXPORT InProcessCommandBuffer : public CommandBuffer,
|
| void PumpCommands();
|
| void PerformDelayedWork();
|
|
|
| + const uint64_t command_buffer_id_;
|
| +
|
| // Members accessed on the gpu thread (possibly with the exception of
|
| // creation):
|
| bool context_lost_;
|
|
|