blob: 022abccf7e9b5e10ead815eb92989e8ed344e489 [file] [log] [blame]
#ifndef BASE_CALLBACK_H_
#define BASE_CALLBACK_H_
#ifndef COBALT_PENDING_CLEAN_UP
#error "TODO: Remove these"
#endif
#include "base/functional/callback.h"
namespace base {
template <typename Signature>
using Callback = RepeatingCallback<Signature>;
using Closure = Callback<void()>;
}
#endif