| Index: base/callback_forward.h
|
| diff --git a/base/callback_forward.h b/base/callback_forward.h
|
| index 213023d956cd1633216f4bf529c9f6dec552c1dd..a9a263a50ea77517e6514792843660d6d25435ca 100644
|
| --- a/base/callback_forward.h
|
| +++ b/base/callback_forward.h
|
| @@ -10,9 +10,9 @@ namespace base {
|
| template <typename Sig>
|
| class Callback;
|
|
|
| -// Syntactic sugar to make Callback<void(void)> easier to declare since it
|
| +// Syntactic sugar to make Callback<void()> easier to declare since it
|
| // will be used in a lot of APIs with delayed execution.
|
| -typedef Callback<void(void)> Closure;
|
| +using Closure = Callback<void()>;
|
|
|
| } // namespace base
|
|
|
|
|