| Index: third_party/WebKit/Source/wtf/Functional.h
|
| diff --git a/third_party/WebKit/Source/wtf/Functional.h b/third_party/WebKit/Source/wtf/Functional.h
|
| index 8aa0a938b4c89222d325713df99b65a03465ee2b..43b97d6aeb84fd91e67b43ea015929ee5bfa6a87 100644
|
| --- a/third_party/WebKit/Source/wtf/Functional.h
|
| +++ b/third_party/WebKit/Source/wtf/Functional.h
|
| @@ -214,14 +214,6 @@ struct ParamStorageTraits<RetainPtr<T>> {
|
| static typename RetainPtr<T>::PtrType unwrap(const StorageType& value) { return value.get(); }
|
| };
|
|
|
| -template <>
|
| -struct ParamStorageTraits<void*> {
|
| - typedef void* StorageType;
|
| -
|
| - static StorageType wrap(void* value) { return value; }
|
| - static void* unwrap(const StorageType& value) { return value; }
|
| -};
|
| -
|
| template <typename T>
|
| struct ParamStorageTraits<PassedWrapper<T>> {
|
| typedef PassedWrapper<T> StorageType;
|
|
|