| OLD | NEW |
| 1 // This file was GENERATED by command: | 1 // This file was GENERATED by command: |
| 2 // pump.py callback.h.pump | 2 // pump.py callback.h.pump |
| 3 // DO NOT EDIT BY HAND!!! | 3 // DO NOT EDIT BY HAND!!! |
| 4 | 4 |
| 5 | 5 |
| 6 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 6 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 7 // Use of this source code is governed by a BSD-style license that can be | 7 // Use of this source code is governed by a BSD-style license that can be |
| 8 // found in the LICENSE file. | 8 // found in the LICENSE file. |
| 9 | 9 |
| 10 #ifndef BASE_CALLBACK_H_ | 10 #ifndef BASE_CALLBACK_H_ |
| (...skipping 743 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 754 typename internal::CallbackParamTraits<A2>::ForwardType, | 754 typename internal::CallbackParamTraits<A2>::ForwardType, |
| 755 typename internal::CallbackParamTraits<A3>::ForwardType, | 755 typename internal::CallbackParamTraits<A3>::ForwardType, |
| 756 typename internal::CallbackParamTraits<A4>::ForwardType, | 756 typename internal::CallbackParamTraits<A4>::ForwardType, |
| 757 typename internal::CallbackParamTraits<A5>::ForwardType, | 757 typename internal::CallbackParamTraits<A5>::ForwardType, |
| 758 typename internal::CallbackParamTraits<A6>::ForwardType, | 758 typename internal::CallbackParamTraits<A6>::ForwardType, |
| 759 typename internal::CallbackParamTraits<A7>::ForwardType); | 759 typename internal::CallbackParamTraits<A7>::ForwardType); |
| 760 | 760 |
| 761 }; | 761 }; |
| 762 | 762 |
| 763 | 763 |
| 764 // Syntactic sugar to make Callbacks<void(void)> easier to declare since it | 764 // Syntactic sugar to make Callback<void(void)> easier to declare since it |
| 765 // will be used in a lot of APIs with delayed execution. | 765 // will be used in a lot of APIs with delayed execution. |
| 766 typedef Callback<void(void)> Closure; | 766 typedef Callback<void(void)> Closure; |
| 767 | 767 |
| 768 } // namespace base | 768 } // namespace base |
| 769 | 769 |
| 770 #endif // BASE_CALLBACK_H | 770 #endif // BASE_CALLBACK_H |
| OLD | NEW |