OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_COMMON_GPU_CLIENT_COMMAND_BUFFER_PROXY_IMPL_H_ | 5 #ifndef CONTENT_COMMON_GPU_CLIENT_COMMAND_BUFFER_PROXY_IMPL_H_ |
6 #define CONTENT_COMMON_GPU_CLIENT_COMMAND_BUFFER_PROXY_IMPL_H_ | 6 #define CONTENT_COMMON_GPU_CLIENT_COMMAND_BUFFER_PROXY_IMPL_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <queue> | 9 #include <queue> |
10 #include <string> | 10 #include <string> |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 | 193 |
194 // Tasks to be invoked in SignalSyncPoint responses. | 194 // Tasks to be invoked in SignalSyncPoint responses. |
195 uint32 next_signal_id_; | 195 uint32 next_signal_id_; |
196 SignalTaskMap signal_tasks_; | 196 SignalTaskMap signal_tasks_; |
197 | 197 |
198 // Local cache of id to gpu memory buffer mapping. | 198 // Local cache of id to gpu memory buffer mapping. |
199 GpuMemoryBufferMap gpu_memory_buffers_; | 199 GpuMemoryBufferMap gpu_memory_buffers_; |
200 | 200 |
201 gpu::Capabilities capabilities_; | 201 gpu::Capabilities capabilities_; |
202 | 202 |
| 203 std::vector<ui::LatencyInfo> latency_info_; |
| 204 |
203 DISALLOW_COPY_AND_ASSIGN(CommandBufferProxyImpl); | 205 DISALLOW_COPY_AND_ASSIGN(CommandBufferProxyImpl); |
204 }; | 206 }; |
205 | 207 |
206 } // namespace content | 208 } // namespace content |
207 | 209 |
208 #endif // CONTENT_COMMON_GPU_CLIENT_COMMAND_BUFFER_PROXY_IMPL_H_ | 210 #endif // CONTENT_COMMON_GPU_CLIENT_COMMAND_BUFFER_PROXY_IMPL_H_ |
OLD | NEW |