Index: third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.cpp |
diff --git a/third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.cpp b/third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.cpp |
index 1a4dc0ab5204fbcb1c2f0d0df42b4334e7e30759..7a15c7e80ee42e4e0bd35a046f7a3a8e53ed83ac 100644 |
--- a/third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.cpp |
+++ b/third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.cpp |
@@ -1039,13 +1039,13 @@ void WebGLRenderingContextBase::initializeNewContext() |
contextGL()->Scissor(0, 0, drawingBufferWidth(), drawingBufferHeight()); |
drawingBuffer()->contextProvider()->setLostContextCallback( |
- WebClosure(bind( |
+ WebClosure(WTF::bind( |
&WebGLRenderingContextBase::forceLostContext, |
wrapWeakPersistent(this), |
WebGLRenderingContextBase::RealLostContext, |
WebGLRenderingContextBase::Auto))); |
drawingBuffer()->contextProvider()->setErrorMessageCallback( |
- WebFunction<void(const char*, int32_t)>(bind( |
+ WebFunction<void(const char*, int32_t)>(WTF::bind( |
&WebGLRenderingContextBase::onErrorMessage, |
wrapWeakPersistent(this)))); |