| Index: content/common/gpu/gpu_command_buffer_stub.h
|
| diff --git a/content/common/gpu/gpu_command_buffer_stub.h b/content/common/gpu/gpu_command_buffer_stub.h
|
| index ed4724388ca7403be0717f4bb3f7f2c48c304565..978c4bc7ed516a6723b1b854134c0934780188d5 100644
|
| --- a/content/common/gpu/gpu_command_buffer_stub.h
|
| +++ b/content/common/gpu/gpu_command_buffer_stub.h
|
| @@ -116,6 +116,9 @@ class GpuCommandBufferStub
|
| gpu::GpuScheduler* scheduler() const { return scheduler_.get(); }
|
| GpuChannel* channel() const { return channel_; }
|
|
|
| + // Unique command buffer ID for this command buffer stub.
|
| + uint64_t command_buffer_id() const { return command_buffer_id_; }
|
| +
|
| // Identifies the target surface.
|
| int32 surface_id() const { return surface_id_; }
|
|
|
| @@ -259,6 +262,7 @@ class GpuCommandBufferStub
|
| std::vector<int32> requested_attribs_;
|
| gfx::GpuPreference gpu_preference_;
|
| bool use_virtualized_gl_context_;
|
| + const uint64_t command_buffer_id_;
|
| const int32 stream_id_;
|
| const int32 route_id_;
|
| const int32 surface_id_;
|
|
|