OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009-2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2009-2010 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 16 matching lines...) Expand all Loading... |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #ifndef CrossThreadTask_h | 31 #ifndef CrossThreadTask_h |
32 #define CrossThreadTask_h | 32 #define CrossThreadTask_h |
33 | 33 |
34 #include "core/dom/ExecutionContext.h" | 34 #include "core/dom/ExecutionContext.h" |
35 #include "core/dom/ExecutionContextTask.h" | 35 #include "core/dom/ExecutionContextTask.h" |
36 #include "platform/ThreadSafeFunctional.h" | 36 #include "platform/ThreadSafeFunctional.h" |
| 37 #include "wtf/PassOwnPtr.h" |
37 #include <type_traits> | 38 #include <type_traits> |
38 | 39 |
39 namespace blink { | 40 namespace blink { |
40 | 41 |
41 // createCrossThreadTask(...) is ExecutionContextTask version of | 42 // createCrossThreadTask(...) is ExecutionContextTask version of |
42 // threadSafeBind(). | 43 // threadSafeBind(). |
43 // Using WTF::bind() directly is not thread-safe due to temporary objects, see | 44 // Using WTF::bind() directly is not thread-safe due to temporary objects, see |
44 // https://crbug.com/390851 for details. | 45 // https://crbug.com/390851 for details. |
45 // | 46 // |
46 // Example: | 47 // Example: |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 template<typename FunctionType, typename... P, | 95 template<typename FunctionType, typename... P, |
95 typename RETTYPE = std::unique_ptr<ExecutionContextTask>, size_t PS = sizeof
...(P), size_t MPS = WTF::FunctionWrapper<FunctionType>::numberOfArguments> | 96 typename RETTYPE = std::unique_ptr<ExecutionContextTask>, size_t PS = sizeof
...(P), size_t MPS = WTF::FunctionWrapper<FunctionType>::numberOfArguments> |
96 typename std::enable_if<PS == MPS, RETTYPE>::type createCrossThreadTask(Function
Type function, P&&... parameters) | 97 typename std::enable_if<PS == MPS, RETTYPE>::type createCrossThreadTask(Function
Type function, P&&... parameters) |
97 { | 98 { |
98 return internal::createCallClosureTask(threadSafeBind(function, std::forward
<P>(parameters)...)); | 99 return internal::createCallClosureTask(threadSafeBind(function, std::forward
<P>(parameters)...)); |
99 } | 100 } |
100 | 101 |
101 } // namespace blink | 102 } // namespace blink |
102 | 103 |
103 #endif // CrossThreadTask_h | 104 #endif // CrossThreadTask_h |
OLD | NEW |