| Index: content/common/gpu/gpu_messages.h
|
| diff --git a/content/common/gpu/gpu_messages.h b/content/common/gpu/gpu_messages.h
|
| index 3f373bbc46f41b570cf1d4a4a15ee27f3d2ce45a..55200399773ec9938543d5d2eaece859e9661f0a 100644
|
| --- a/content/common/gpu/gpu_messages.h
|
| +++ b/content/common/gpu/gpu_messages.h
|
| @@ -412,6 +412,16 @@ IPC_MESSAGE_CONTROL1(GpuHostMsg_GpuMemoryUmaStats,
|
| // Response to GpuMsg_RelinquishResources.
|
| IPC_MESSAGE_CONTROL0(GpuHostMsg_ResourcesRelinquished)
|
|
|
| +// Tells the browser that a context has subscribed to a new target and
|
| +// the browser should start sending the corresponding information
|
| +IPC_MESSAGE_CONTROL1(GpuHostMsg_AddSubscription,
|
| + unsigned int /* target */);
|
| +
|
| +// Tells the browser that no contexts are subscribed to the target anymore
|
| +// so the browser should stop sending the corresponding information
|
| +IPC_MESSAGE_CONTROL1(GpuHostMsg_RemoveSubscription,
|
| + unsigned int /* target */);
|
| +
|
| //------------------------------------------------------------------------------
|
| // GPU Channel Messages
|
| // These are messages from a renderer process to the GPU process.
|
|
|