| 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 789bb63d83776755ead8a3a102e09b0899c780ee..df0e1a7a8125753e0c382da9463cea900123e9e9 100644
|
| --- a/ppapi/proxy/ppapi_command_buffer_proxy.cc
|
| +++ b/ppapi/proxy/ppapi_command_buffer_proxy.cc
|
| @@ -170,11 +170,18 @@ void PpapiCommandBufferProxy::DestroyTransferBuffer(int32 id) {
|
| ppapi::API_ID_PPB_GRAPHICS_3D, resource_, id));
|
| }
|
|
|
| -uint32 PpapiCommandBufferProxy::CreateStreamTexture(uint32 texture_id) {
|
| +int32 PpapiCommandBufferProxy::CreateStreamTexture(uint32 texture_id) {
|
| NOTREACHED();
|
| return 0;
|
| }
|
|
|
| +void PpapiCommandBufferProxy::SetStreamTextureSize(uint32 texture_id,
|
| + int32 stream_id,
|
| + size_t width,
|
| + size_t height) {
|
| + NOTIMPLEMENTED();
|
| +}
|
| +
|
| void PpapiCommandBufferProxy::SetLock(base::Lock*) {
|
| NOTIMPLEMENTED();
|
| }
|
|
|