Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(186)

Unified Diff: third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.cpp

Issue 2108033005: Specify WTF:: prefix for bind() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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))));

Powered by Google App Engine
This is Rietveld 408576698