Index: mojo/gles2/command_buffer_client_impl.cc |
diff --git a/mojo/gles2/command_buffer_client_impl.cc b/mojo/gles2/command_buffer_client_impl.cc |
index e302cd5872db966f3c6ba57927c79a6c4ae6c103..b34d438078400d12ebb164b47afe11212a56bd4b 100644 |
--- a/mojo/gles2/command_buffer_client_impl.cc |
+++ b/mojo/gles2/command_buffer_client_impl.cc |
@@ -396,4 +396,16 @@ bool CommandBufferClientImpl::IsGpuChannelLost() { |
return false; |
} |
+gpu::CommandBufferNamespace CommandBufferClientImpl::GetNamespaceID() const { |
+ return gpu::CommandBufferNamespace::MOJO; |
+} |
+ |
+uint64_t CommandBufferClientImpl::GetCommandBufferID() const { |
+ // TODO (rjkroege): This must correspond to the command buffer ID on the |
+ // server side. Most likely a combination of the client-specific integer and |
+ // the connect id. |
+ NOTIMPLEMENTED(); |
+ return 0; |
+} |
+ |
} // namespace gles2 |