Index: content/common/gpu/client/gpu_channel_host.cc |
=================================================================== |
--- content/common/gpu/client/gpu_channel_host.cc (revision 166046) |
+++ content/common/gpu/client/gpu_channel_host.cc (working copy) |
@@ -242,6 +242,13 @@ |
channel_filter_.get(), route_id)); |
} |
+bool GpuChannelHost::GenerateMailboxNames(unsigned num, |
+ std::vector<std::string>* names) { |
+ TRACE_EVENT0("gpu", "GenerateMailboxName"); |
+ AutoLock lock(context_lock_); |
+ return Send(new GpuChannelMsg_GenerateMailboxNames(num, names)); |
+} |
+ |
GpuChannelHost::~GpuChannelHost() {} |