Index: third_party/WebKit/Source/platform/CrossThreadFunctional.h |
diff --git a/third_party/WebKit/Source/platform/CrossThreadFunctional.h b/third_party/WebKit/Source/platform/CrossThreadFunctional.h |
index c54725f2e87f58931c92101eff7b9f62f4c932f0..4b2c5cf96f2e5c2a23e5916a44d64da05ac9261a 100644 |
--- a/third_party/WebKit/Source/platform/CrossThreadFunctional.h |
+++ b/third_party/WebKit/Source/platform/CrossThreadFunctional.h |
@@ -6,7 +6,7 @@ |
#define CrossThreadFunctional_h |
#include "base/bind.h" |
-#include "platform/CrossThreadCopier.h" |
+#include "wtf/CrossThreadCopier.h" |
sof
2016/07/06 14:13:34
Do you plan to move CrossThreadFunctional.h in a f
|
#include "wtf/Functional.h" |
#include <type_traits> |
@@ -35,7 +35,7 @@ std::unique_ptr<Function<base::MakeUnboundRunType<FunctionType, Ps...>, WTF::Cro |
{ |
return WTF::bindInternal<WTF::CrossThreadAffinity>( |
function, |
- CrossThreadCopier<typename std::decay<Ps>::type>::copy(std::forward<Ps>(parameters))...); |
+ WTF::CrossThreadCopier<typename std::decay<Ps>::type>::copy(std::forward<Ps>(parameters))...); |
} |
} // namespace blink |