Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(178)

Side by Side Diff: base/callback.h.pump

Issue 8960011: base::Bind: Remove NewRunnableFunction. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Lame TODO. Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « base/callback.h ('k') | base/memory/weak_ptr_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 $$ This is a pump file for generating file templates. Pump is a python 1 $$ This is a pump file for generating file templates. Pump is a python
2 $$ script that is part of the Google Test suite of utilities. Description 2 $$ script that is part of the Google Test suite of utilities. Description
3 $$ can be found here: 3 $$ can be found here:
4 $$ 4 $$
5 $$ http://code.google.com/p/googletest/wiki/PumpManual 5 $$ http://code.google.com/p/googletest/wiki/PumpManual
6 $$ 6 $$
7 7
8 $$ See comment for MAX_ARITY in base/bind.h.pump. 8 $$ See comment for MAX_ARITY in base/bind.h.pump.
9 $var MAX_ARITY = 7 9 $var MAX_ARITY = 7
10 10
11 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 11 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
12 // Use of this source code is governed by a BSD-style license that can be 12 // Use of this source code is governed by a BSD-style license that can be
13 // found in the LICENSE file. 13 // found in the LICENSE file.
14 14
15 #ifndef BASE_CALLBACK_H_ 15 #ifndef BASE_CALLBACK_H_
16 #define BASE_CALLBACK_H_ 16 #define BASE_CALLBACK_H_
17 #pragma once 17 #pragma once
18 18
19 #include "base/callback_forward.h" 19 #include "base/callback_forward.h"
20 #include "base/callback_internal.h" 20 #include "base/callback_internal.h"
21 #include "base/template_util.h" 21 #include "base/template_util.h"
22 22
23 // NOTE: Header files that do not require the full definition of Callback or 23 // NOTE: Header files that do not require the full definition of Callback or
24 // Closure should #include "base/callback_forward.h" instead of this file. 24 // Closure should #include "base/callback_forward.h" instead of this file.
25 25
26 // New, super-duper, unified Callback system. This will eventually replace 26 // New, super-duper, unified Callback system. This will eventually replace
27 // NewRunnableMethod, NewRunnableFunction, CreateFunctor, and CreateCallback 27 // NewRunnableMethod, CreateFunctor, and CreateCallback systems currently in the
28 // systems currently in the Chromium code base. 28 // Chromium code base.
29 // 29 //
30 // WHAT IS THIS: 30 // WHAT IS THIS:
31 // 31 //
32 // The templated Callback class is a generalized function object. Together 32 // The templated Callback class is a generalized function object. Together
33 // with the Bind() function in bind.h, they provide a type-safe method for 33 // with the Bind() function in bind.h, they provide a type-safe method for
34 // performing currying of arguments, and creating a "closure." 34 // performing currying of arguments, and creating a "closure."
35 // 35 //
36 // In programming languages, a closure is a first-class function where all its 36 // In programming languages, a closure is a first-class function where all its
37 // parameters have been bound (usually via currying). Closures are well 37 // parameters have been bound (usually via currying). Closures are well
38 // suited for representing, and passing around a unit of delayed execution. 38 // suited for representing, and passing around a unit of delayed execution.
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 307
308 ]] $$ for ARITY 308 ]] $$ for ARITY
309 309
310 // Syntactic sugar to make Callbacks<void(void)> easier to declare since it 310 // Syntactic sugar to make Callbacks<void(void)> easier to declare since it
311 // will be used in a lot of APIs with delayed execution. 311 // will be used in a lot of APIs with delayed execution.
312 typedef Callback<void(void)> Closure; 312 typedef Callback<void(void)> Closure;
313 313
314 } // namespace base 314 } // namespace base
315 315
316 #endif // BASE_CALLBACK_H 316 #endif // BASE_CALLBACK_H
OLDNEW
« no previous file with comments | « base/callback.h ('k') | base/memory/weak_ptr_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698