| 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 $var MAX_ARITY = 6 | 8 $$ See comment for MAX_ARITY in base/bind.h.pump. |
| 9 $var MAX_ARITY = 7 |
| 9 | 10 |
| 10 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 11 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 11 // 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 |
| 12 // found in the LICENSE file. | 13 // found in the LICENSE file. |
| 13 | 14 |
| 14 // Specializations of RunnableAdapter<> for Windows specific calling | 15 // Specializations of RunnableAdapter<> for Windows specific calling |
| 15 // conventions. Please see base/bind_internal.h for more info. | 16 // conventions. Please see base/bind_internal.h for more info. |
| 16 | 17 |
| 17 #ifndef BASE_BIND_INTERNAL_WIN_H_ | 18 #ifndef BASE_BIND_INTERNAL_WIN_H_ |
| 18 #define BASE_BIND_INTERNAL_WIN_H_ | 19 #define BASE_BIND_INTERNAL_WIN_H_ |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 }; | 73 }; |
| 73 | 74 |
| 74 ]] $$for ARITY | 75 ]] $$for ARITY |
| 75 | 76 |
| 76 } // namespace internal | 77 } // namespace internal |
| 77 } // namespace base | 78 } // namespace base |
| 78 | 79 |
| 79 #endif // !defined(ARCH_CPU_X86_64) | 80 #endif // !defined(ARCH_CPU_X86_64) |
| 80 | 81 |
| 81 #endif // BASE_BIND_INTERNAL_WIN_H_ | 82 #endif // BASE_BIND_INTERNAL_WIN_H_ |
| OLD | NEW |