| 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 $range ARITY 0..MAX_ARITY | 10 $range ARITY 0..MAX_ARITY |
| 11 | 11 |
| 12 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 12 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 13 // Use of this source code is governed by a BSD-style license that can be | 13 // Use of this source code is governed by a BSD-style license that can be |
| 14 // found in the LICENSE file. | 14 // found in the LICENSE file. |
| 15 | 15 |
| 16 #ifndef BASE_BIND_INTERNAL_H_ | 16 #ifndef BASE_BIND_INTERNAL_H_ |
| 17 #define BASE_BIND_INTERNAL_H_ | 17 #define BASE_BIND_INTERNAL_H_ |
| 18 #pragma once | |
| 19 | 18 |
| 20 #include "base/bind_helpers.h" | 19 #include "base/bind_helpers.h" |
| 21 #include "base/callback_internal.h" | 20 #include "base/callback_internal.h" |
| 22 #include "base/memory/raw_scoped_refptr_mismatch_checker.h" | 21 #include "base/memory/raw_scoped_refptr_mismatch_checker.h" |
| 23 #include "base/memory/weak_ptr.h" | 22 #include "base/memory/weak_ptr.h" |
| 24 #include "base/template_util.h" | 23 #include "base/template_util.h" |
| 25 #include "build/build_config.h" | 24 #include "build/build_config.h" |
| 26 | 25 |
| 27 #if defined(OS_WIN) | 26 #if defined(OS_WIN) |
| 28 #include "base/bind_internal_win.h" | 27 #include "base/bind_internal_win.h" |
| (...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 485 | 484 |
| 486 ]] | 485 ]] |
| 487 }; | 486 }; |
| 488 | 487 |
| 489 ]] $$ for ARITY | 488 ]] $$ for ARITY |
| 490 | 489 |
| 491 } // namespace internal | 490 } // namespace internal |
| 492 } // namespace base | 491 } // namespace base |
| 493 | 492 |
| 494 #endif // BASE_BIND_INTERNAL_H_ | 493 #endif // BASE_BIND_INTERNAL_H_ |
| OLD | NEW |