| Index: content/common/gpu/client/gpu_channel_host.h
|
| diff --git a/content/common/gpu/client/gpu_channel_host.h b/content/common/gpu/client/gpu_channel_host.h
|
| index 7b78c2f3a6ab3dcde222c7e7a0864a57fb79539e..44f9ba1c03c19875f0d456898150e1b543e2a6c1 100644
|
| --- a/content/common/gpu/client/gpu_channel_host.h
|
| +++ b/content/common/gpu/client/gpu_channel_host.h
|
| @@ -38,6 +38,10 @@ namespace base {
|
| class MessageLoopProxy;
|
| }
|
|
|
| +namespace content {
|
| +struct GpuRenderingStats;
|
| +}
|
| +
|
| namespace IPC {
|
| class SyncMessageFilter;
|
| }
|
| @@ -131,6 +135,9 @@ class GpuChannelHost : public IPC::Sender,
|
| // Destroy a command buffer created by this channel.
|
| void DestroyCommandBuffer(CommandBufferProxy* command_buffer);
|
|
|
| + // Collect rendering stats from GPU process.
|
| + bool CollectRenderingStats(content::GpuRenderingStats& stats);
|
| +
|
| // Add a route for the current message loop.
|
| void AddRoute(int route_id, base::WeakPtr<IPC::Listener> listener);
|
| void RemoveRoute(int route_id);
|
|
|