| Index: gpu/command_buffer/client/gl_in_process_context.cc
|
| diff --git a/gpu/command_buffer/client/gl_in_process_context.cc b/gpu/command_buffer/client/gl_in_process_context.cc
|
| index ece37153375df636e1de4f0c864fc17126b3643a..6f2fb0d8fe8eaac8b914a5326db40eb5ad40853f 100644
|
| --- a/gpu/command_buffer/client/gl_in_process_context.cc
|
| +++ b/gpu/command_buffer/client/gl_in_process_context.cc
|
| @@ -71,12 +71,6 @@ class GLInProcessContextImpl
|
| size_t GetMappedMemoryLimit() override;
|
| void SetLock(base::Lock* lock) override;
|
|
|
| -#if defined(OS_ANDROID)
|
| - scoped_refptr<gfx::SurfaceTexture> GetSurfaceTexture(
|
| - uint32_t stream_id) override;
|
| - uint32_t CreateStreamTexture(uint32_t texture_id) override;
|
| -#endif
|
| -
|
| private:
|
| void Destroy();
|
| void OnSignalSyncPoint(const base::Closure& callback);
|
| @@ -207,17 +201,6 @@ void GLInProcessContextImpl::Destroy() {
|
| command_buffer_.reset();
|
| }
|
|
|
| -#if defined(OS_ANDROID)
|
| -scoped_refptr<gfx::SurfaceTexture> GLInProcessContextImpl::GetSurfaceTexture(
|
| - uint32_t stream_id) {
|
| - return command_buffer_->GetSurfaceTexture(stream_id);
|
| -}
|
| -
|
| -uint32_t GLInProcessContextImpl::CreateStreamTexture(uint32_t texture_id) {
|
| - return command_buffer_->CreateStreamTexture(texture_id);
|
| -}
|
| -#endif
|
| -
|
| } // anonymous namespace
|
|
|
| GLInProcessContextSharedMemoryLimits::GLInProcessContextSharedMemoryLimits()
|
|
|