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

Unified Diff: third_party/WebKit/Source/core/dom/ExecutionContextTask.h

Issue 2050123002: Remove OwnPtr from Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge. 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/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

Powered by Google App Engine
This is Rietveld 408576698