Index: ppapi/proxy/ppapi_command_buffer_proxy.cc |
diff --git a/ppapi/proxy/ppapi_command_buffer_proxy.cc b/ppapi/proxy/ppapi_command_buffer_proxy.cc |
index 7a42524bff2fe2827ffbce153f9d62f1a011b108..05f4e1233f8e1cb3baae26ac01492eaf39277f56 100644 |
--- a/ppapi/proxy/ppapi_command_buffer_proxy.cc |
+++ b/ppapi/proxy/ppapi_command_buffer_proxy.cc |
@@ -163,6 +163,15 @@ void PpapiCommandBufferProxy::DestroyTransferBuffer(int32 id) { |
ppapi::API_ID_PPB_GRAPHICS_3D, resource_, id)); |
} |
+void PpapiCommandBufferProxy::GetRouteInformation(int* channel_id, |
+ uint32_t* route_id) { |
+ if (channel_id) |
+ *channel_id = 0; |
+ |
+ if (route_id) |
+ *route_id = 0; |
piman
2015/09/10 23:55:32
We will need to reflect the real channel_id/route_
David Yen
2015/09/23 18:30:34
Done.
|
+} |
+ |
uint32 PpapiCommandBufferProxy::CreateStreamTexture(uint32 texture_id) { |
NOTREACHED(); |
return 0; |