Index: third_party/WebKit/Source/core/dom/ExecutionContextTask.h |
diff --git a/third_party/WebKit/Source/core/dom/ExecutionContextTask.h b/third_party/WebKit/Source/core/dom/ExecutionContextTask.h |
index 4fdbbc90382c3e517f6170ee1a4041fec2002837..4efe57675fa8104272b1a1efe92af62dce83d033 100644 |
--- a/third_party/WebKit/Source/core/dom/ExecutionContextTask.h |
+++ b/third_party/WebKit/Source/core/dom/ExecutionContextTask.h |
@@ -104,7 +104,7 @@ template<typename FunctionType, typename... P> |
std::unique_ptr<ExecutionContextTask> createSameThreadTask( |
FunctionType function, P&&... parameters) |
{ |
- return internal::createCallClosureTask(WTF::bind(function, std::forward<P>(parameters)...)); |
+ return internal::createCallClosureTask(bind(function, std::forward<P>(parameters)...)); |
} |
} // namespace blink |