| Index: Source/core/html/canvas/WebGLVertexArrayObjectOES.cpp
|
| diff --git a/Source/core/html/canvas/WebGLVertexArrayObjectOES.cpp b/Source/core/html/canvas/WebGLVertexArrayObjectOES.cpp
|
| index 50c8738c1e719708c9e6093e91e434026ec26cad..82a21d0ba8f7d3abf65a61b551fa3abeac821060 100644
|
| --- a/Source/core/html/canvas/WebGLVertexArrayObjectOES.cpp
|
| +++ b/Source/core/html/canvas/WebGLVertexArrayObjectOES.cpp
|
| @@ -74,7 +74,7 @@ WebGLVertexArrayObjectOES::~WebGLVertexArrayObjectOES()
|
| detachAndDeleteObject();
|
| }
|
|
|
| -void WebGLVertexArrayObjectOES::dispatchDetached(blink::WebGraphicsContext3D* context3d)
|
| +void WebGLVertexArrayObjectOES::dispatchDetached(WebGraphicsContext3D* context3d)
|
| {
|
| if (m_boundElementArrayBuffer)
|
| m_boundElementArrayBuffer->onDetached(context3d);
|
| @@ -86,7 +86,7 @@ void WebGLVertexArrayObjectOES::dispatchDetached(blink::WebGraphicsContext3D* co
|
| }
|
| }
|
|
|
| -void WebGLVertexArrayObjectOES::deleteObjectImpl(blink::WebGraphicsContext3D* context3d)
|
| +void WebGLVertexArrayObjectOES::deleteObjectImpl(WebGraphicsContext3D* context3d)
|
| {
|
| switch (m_type) {
|
| case VaoTypeDefault:
|
| @@ -183,4 +183,4 @@ DEFINE_TRACE(WebGLVertexArrayObjectOES)
|
| WebGLContextObject::trace(visitor);
|
| }
|
|
|
| -}
|
| +} // namespace blink
|
|
|