| OLD | NEW |
| 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) 2012 The Chromium Authors. All rights reserved. | 11 // Copyright (c) 2012 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 | |
| 18 | 17 |
| 19 #include "base/callback_forward.h" | 18 #include "base/callback_forward.h" |
| 20 #include "base/callback_internal.h" | 19 #include "base/callback_internal.h" |
| 21 #include "base/template_util.h" | 20 #include "base/template_util.h" |
| 22 | 21 |
| 23 // NOTE: Header files that do not require the full definition of Callback or | 22 // 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. | 23 // Closure should #include "base/callback_forward.h" instead of this file. |
| 25 | 24 |
| 26 // WHAT IS THIS: | 25 // WHAT IS THIS: |
| 27 // | 26 // |
| (...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 | 302 |
| 304 ]] $$ for ARITY | 303 ]] $$ for ARITY |
| 305 | 304 |
| 306 // Syntactic sugar to make Callbacks<void(void)> easier to declare since it | 305 // Syntactic sugar to make Callbacks<void(void)> easier to declare since it |
| 307 // will be used in a lot of APIs with delayed execution. | 306 // will be used in a lot of APIs with delayed execution. |
| 308 typedef Callback<void(void)> Closure; | 307 typedef Callback<void(void)> Closure; |
| 309 | 308 |
| 310 } // namespace base | 309 } // namespace base |
| 311 | 310 |
| 312 #endif // BASE_CALLBACK_H | 311 #endif // BASE_CALLBACK_H |
| OLD | NEW |