| Index: gpu/blink/webgraphicscontext3d_impl.h
|
| diff --git a/gpu/blink/webgraphicscontext3d_impl.h b/gpu/blink/webgraphicscontext3d_impl.h
|
| index 91774ccf797010cf58747849634087342ee3afda..bd2c45f88b57f29a0b7b08baf9c0a1c7e04e4c61 100644
|
| --- a/gpu/blink/webgraphicscontext3d_impl.h
|
| +++ b/gpu/blink/webgraphicscontext3d_impl.h
|
| @@ -20,15 +20,12 @@ namespace gpu {
|
|
|
| namespace gles2 {
|
| class GLES2Interface;
|
| -class GLES2ImplementationErrorMessageCallback;
|
| struct ContextCreationAttribHelper;
|
| }
|
| }
|
|
|
| namespace gpu_blink {
|
|
|
| -class WebGraphicsContext3DErrorMessageCallback;
|
| -
|
| class GPU_BLINK_EXPORT WebGraphicsContext3DImpl
|
| : public NON_EXPORTED_BASE(blink::WebGraphicsContext3D) {
|
| public:
|
| @@ -40,16 +37,11 @@ class GPU_BLINK_EXPORT WebGraphicsContext3DImpl
|
| void setContextLostCallback(
|
| WebGraphicsContext3D::WebGraphicsContextLostCallback* callback);
|
|
|
| - void setErrorMessageCallback(
|
| - WebGraphicsContext3D::WebGraphicsErrorMessageCallback* callback) override;
|
| -
|
| ::gpu::gles2::GLES2Interface* GetGLInterface() {
|
| return gl_;
|
| }
|
|
|
| protected:
|
| - friend class WebGraphicsContext3DErrorMessageCallback;
|
| -
|
| WebGraphicsContext3DImpl();
|
|
|
| void SetGLInterface(::gpu::gles2::GLES2Interface* gl) { gl_ = gl; }
|
| @@ -58,7 +50,6 @@ class GPU_BLINK_EXPORT WebGraphicsContext3DImpl
|
| bool initialize_failed_;
|
|
|
| WebGraphicsContextLostCallback* context_lost_callback_;
|
| - WebGraphicsErrorMessageCallback* error_message_callback_;
|
|
|
| ::gpu::gles2::GLES2Interface* gl_;
|
| bool lose_context_when_out_of_memory_;
|
|
|