| Index: base/post_task_and_reply_with_result_internal.h
|
| diff --git a/base/post_task_and_reply_with_result_internal.h b/base/post_task_and_reply_with_result_internal.h
|
| index 1456129324a55dd80b90124895c110bde5d735d5..6f50de8b8609fc0163df914f0229b8dceaa0e3f5 100644
|
| --- a/base/post_task_and_reply_with_result_internal.h
|
| +++ b/base/post_task_and_reply_with_result_internal.h
|
| @@ -16,16 +16,15 @@ namespace internal {
|
| // Adapts a function that produces a result via a return value to
|
| // one that returns via an output parameter.
|
| template <typename ReturnType>
|
| -void ReturnAsParamAdapter(const Callback<ReturnType(void)>& func,
|
| - ReturnType* result) {
|
| - *result = func.Run();
|
| +void ReturnAsParamAdapter(OnceCallback<ReturnType()> func, ReturnType* result) {
|
| + *result = std::move(func).Run();
|
| }
|
|
|
| // Adapts a T* result to a callblack that expects a T.
|
| template <typename TaskReturnType, typename ReplyArgType>
|
| -void ReplyAdapter(const Callback<void(ReplyArgType)>& callback,
|
| +void ReplyAdapter(OnceCallback<void(ReplyArgType)> callback,
|
| TaskReturnType* result) {
|
| - callback.Run(std::move(*result));
|
| + std::move(callback).Run(std::move(*result));
|
| }
|
|
|
| } // namespace internal
|
|
|