| Index: third_party/WebKit/Source/wtf/TypeTraits.h
|
| diff --git a/third_party/WebKit/Source/wtf/TypeTraits.h b/third_party/WebKit/Source/wtf/TypeTraits.h
|
| index 4b9fef359bb11e3cce67b2c97e4d1bbec389c0bb..e3c91191fe0fa1294d01edba511de1eab30e5758 100644
|
| --- a/third_party/WebKit/Source/wtf/TypeTraits.h
|
| +++ b/third_party/WebKit/Source/wtf/TypeTraits.h
|
| @@ -37,8 +37,6 @@ inline const char* getStringWithTypeName()
|
| return WTF_PRETTY_FUNCTION;
|
| }
|
|
|
| -template<typename T> class RawPtr;
|
| -
|
| template <typename T> struct IsWeak {
|
| static const bool value = false;
|
| };
|
| @@ -331,11 +329,6 @@ class IsPointerToGarbageCollectedType<T*> {
|
| public:
|
| static const bool value = IsGarbageCollectedType<T>::value;
|
| };
|
| -template<typename T>
|
| -class IsPointerToGarbageCollectedType<RawPtr<T>> {
|
| -public:
|
| - static const bool value = IsGarbageCollectedType<T>::value;
|
| -};
|
|
|
| } // namespace WTF
|
|
|
|
|