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)...)); |
|
tkent
2016/06/14 02:23:47
Is this change necessary?
Yuta Kitamura
2016/06/14 04:44:43
Yes, because this becomes ambiguous with std::bind
|
| } |
| } // namespace blink |