| Index: third_party/WebKit/Source/platform/CrossThreadCopier.h
|
| diff --git a/third_party/WebKit/Source/platform/CrossThreadCopier.h b/third_party/WebKit/Source/platform/CrossThreadCopier.h
|
| index 0625df180bf8b484265f3bfaadd9ac85d41c1297..dda12c20bfdbcb2279bb0b3b6e365782f27a967b 100644
|
| --- a/third_party/WebKit/Source/platform/CrossThreadCopier.h
|
| +++ b/third_party/WebKit/Source/platform/CrossThreadCopier.h
|
| @@ -206,17 +206,6 @@ struct CrossThreadCopier<ResourceResponse> {
|
| PLATFORM_EXPORT static Type copy(const ResourceResponse&);
|
| };
|
|
|
| -template <typename T>
|
| -struct CrossThreadCopier<Member<T>> {
|
| - STATIC_ONLY(CrossThreadCopier);
|
| - static_assert(IsGarbageCollectedType<T>::value, "T must be a garbage-collected type.");
|
| - typedef T* Type;
|
| - static Type copy(const Member<T>& ptr)
|
| - {
|
| - return ptr;
|
| - }
|
| -};
|
| -
|
| } // namespace blink
|
|
|
| #endif // CrossThreadCopier_h
|
|
|