blob: 262c306530067c0a42d28c5f1cec0e4f9de537a9 [file] [log] [blame]
erikwright@chromium.org4d61c7d2011-11-29 07:00:29 +09001// Copyright (c) 2011 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef BASE_CALLBACK_FORWARD_H_
6#define BASE_CALLBACK_FORWARD_H_
erikwright@chromium.org4d61c7d2011-11-29 07:00:29 +09007
8namespace base {
9
10template <typename Sig>
11class Callback;
12
13typedef Callback<void(void)> Closure;
14
15} // namespace base
16
danakj0393da32015-03-10 09:31:16 +090017#endif // BASE_CALLBACK_FORWARD_H_