Chromium Code Reviews| 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 4efe57675fa8104272b1a1efe92af62dce83d033..4fdbbc90382c3e517f6170ee1a4041fec2002837 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(bind(function, std::forward<P>(parameters)...)); |
| + return internal::createCallClosureTask(WTF::bind(function, std::forward<P>(parameters)...)); |
|
tzik
2016/06/15 12:49:38
Just a comment: Without `WTF::`, `bind` is ambiguo
Yuta Kitamura
2016/06/17 12:11:16
Yes.
|
| } |
| } // namespace blink |