| Index: third_party/WebKit/Source/modules/webgl/WebGLSharedObject.cpp
|
| diff --git a/third_party/WebKit/Source/modules/webgl/WebGLSharedObject.cpp b/third_party/WebKit/Source/modules/webgl/WebGLSharedObject.cpp
|
| index 2cc97e652be3c3e2a01193673d385c1248988a43..904dd44f782ab9bc763d056f177a3c3b6681783e 100644
|
| --- a/third_party/WebKit/Source/modules/webgl/WebGLSharedObject.cpp
|
| +++ b/third_party/WebKit/Source/modules/webgl/WebGLSharedObject.cpp
|
| @@ -46,15 +46,15 @@ void WebGLSharedObject::detachContextGroup()
|
| {
|
| detach();
|
| if (m_contextGroup) {
|
| - deleteObject(nullptr, nullptr);
|
| + deleteObject(nullptr);
|
| m_contextGroup->removeObject(this);
|
| m_contextGroup = nullptr;
|
| }
|
| }
|
|
|
| -WebGraphicsContext3D* WebGLSharedObject::getAWebGraphicsContext3D() const
|
| +gpu::gles2::GLES2Interface* WebGLSharedObject::getAGLInterface() const
|
| {
|
| - return m_contextGroup ? m_contextGroup->getAWebGraphicsContext3D() : nullptr;
|
| + return m_contextGroup ? m_contextGroup->getAGLInterface() : nullptr;
|
| }
|
|
|
| } // namespace blink
|
|
|