| Index: third_party/WebKit/Source/modules/webgl/WebGLContextObject.h
|
| diff --git a/third_party/WebKit/Source/modules/webgl/WebGLContextObject.h b/third_party/WebKit/Source/modules/webgl/WebGLContextObject.h
|
| index 1bcfc38322704d93d8c14a7acce6395897ecd6c0..ca65a066de68902eaf463a5f0cb1469eb339a658 100644
|
| --- a/third_party/WebKit/Source/modules/webgl/WebGLContextObject.h
|
| +++ b/third_party/WebKit/Source/modules/webgl/WebGLContextObject.h
|
| @@ -36,16 +36,10 @@ class WebGLRenderingContextBase;
|
| // WebGLRenderingContextBase.
|
| class WebGLContextObject : public WebGLObject {
|
| public:
|
| - ~WebGLContextObject() override;
|
| -
|
| WebGLRenderingContextBase* context() const { return m_context; }
|
|
|
| bool validate(const WebGLContextGroup*,
|
| - const WebGLRenderingContextBase* context) const final {
|
| - return context == m_context;
|
| - }
|
| -
|
| - void detachContext();
|
| + const WebGLRenderingContextBase*) const final;
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| @@ -54,6 +48,8 @@ class WebGLContextObject : public WebGLObject {
|
|
|
| bool hasGroupOrContext() const final { return m_context; }
|
|
|
| + uint32_t currentNumberOfContextLosses() const final;
|
| +
|
| gpu::gles2::GLES2Interface* getAGLInterface() const final;
|
|
|
| private:
|
|
|