Home | History | Annotate | Download | only in base

Lines Matching refs:Args

34 template <typename... Args>
37 explicit AdaptCallbackForRepeatingHelper(OnceCallback<void(Args...)> callback)
42 void Run(Args... args) {
46 std::move(callback_).Run(std::forward<Args>(args)...);
51 base::OnceCallback<void(Args...)> callback_;
65 template <typename... Args>
66 RepeatingCallback<void(Args...)> AdaptCallbackForRepeating(
67 OnceCallback<void(Args...)> callback) {
68 using Helper = internal::AdaptCallbackForRepeatingHelper<Args...>;