| 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 14 matching lines...) Expand all Loading... |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 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 CrossThreadCopier_h | 31 #ifndef CrossThreadCopier_h |
| 32 #define CrossThreadCopier_h | 32 #define CrossThreadCopier_h |
| 33 | 33 |
| 34 #include "platform/PlatformExport.h" | 34 #include "platform/PlatformExport.h" |
| 35 #include "platform/heap/Handle.h" | |
| 36 #include "wtf/Assertions.h" | 35 #include "wtf/Assertions.h" |
| 37 #include "wtf/Forward.h" | 36 #include "wtf/Forward.h" |
| 37 #include "wtf/Functional.h" // FunctionThreadAffinity |
| 38 #include "wtf/PassRefPtr.h" | 38 #include "wtf/PassRefPtr.h" |
| 39 #include "wtf/RefPtr.h" | 39 #include "wtf/RefPtr.h" |
| 40 #include "wtf/ThreadSafeRefCounted.h" | 40 #include "wtf/ThreadSafeRefCounted.h" |
| 41 #include "wtf/TypeTraits.h" | 41 #include "wtf/TypeTraits.h" |
| 42 #include <memory> | 42 #include <memory> |
| 43 | 43 |
| 44 class SkRefCnt; | 44 class SkRefCnt; |
| 45 | 45 |
| 46 namespace WTF { | 46 namespace WTF { |
| 47 | 47 |
| 48 template <typename T> | 48 template <typename T> |
| 49 class PassedWrapper; | 49 class PassedWrapper; |
| 50 | 50 |
| 51 } | 51 } |
| 52 | 52 |
| 53 namespace blink { | 53 namespace blink { |
| 54 | 54 |
| 55 class IntRect; | 55 class IntRect; |
| 56 class IntSize; | 56 class IntSize; |
| 57 class KURL; | 57 class KURL; |
| 58 class ResourceError; | 58 class ResourceError; |
| 59 class ResourceRequest; | 59 class ResourceRequest; |
| 60 class ResourceResponse; | 60 class ResourceResponse; |
| 61 struct CrossThreadResourceResponseData; | 61 struct CrossThreadResourceResponseData; |
| 62 struct CrossThreadResourceRequestData; | 62 struct CrossThreadResourceRequestData; |
| 63 template<typename T>class CrossThreadPersistent; |
| 64 template<typename T>class CrossThreadWeakPersistent; |
| 63 | 65 |
| 64 template <typename T> | 66 template <typename T> |
| 65 struct CrossThreadCopierPassThrough { | 67 struct CrossThreadCopierPassThrough { |
| 66 STATIC_ONLY(CrossThreadCopierPassThrough); | 68 STATIC_ONLY(CrossThreadCopierPassThrough); |
| 67 typedef T Type; | 69 typedef T Type; |
| 68 static Type copy(const T& parameter) | 70 static Type copy(const T& parameter) |
| 69 { | 71 { |
| 70 return parameter; | 72 return parameter; |
| 71 } | 73 } |
| 72 }; | 74 }; |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 template <> | 185 template <> |
| 184 struct CrossThreadCopier<ResourceResponse> { | 186 struct CrossThreadCopier<ResourceResponse> { |
| 185 STATIC_ONLY(CrossThreadCopier); | 187 STATIC_ONLY(CrossThreadCopier); |
| 186 typedef WTF::PassedWrapper<std::unique_ptr<CrossThreadResourceResponseData>>
Type; | 188 typedef WTF::PassedWrapper<std::unique_ptr<CrossThreadResourceResponseData>>
Type; |
| 187 PLATFORM_EXPORT static Type copy(const ResourceResponse&); | 189 PLATFORM_EXPORT static Type copy(const ResourceResponse&); |
| 188 }; | 190 }; |
| 189 | 191 |
| 190 } // namespace blink | 192 } // namespace blink |
| 191 | 193 |
| 192 #endif // CrossThreadCopier_h | 194 #endif // CrossThreadCopier_h |
| OLD | NEW |