Index: third_party/WebKit/Source/platform/Supplementable.h |
diff --git a/third_party/WebKit/Source/platform/Supplementable.h b/third_party/WebKit/Source/platform/Supplementable.h |
index fc765c6753809f406878761b3be8c443c8826e61..5a2ce733ec32e55d77340f10e50db62edf846d28 100644 |
--- a/third_party/WebKit/Source/platform/Supplementable.h |
+++ b/third_party/WebKit/Source/platform/Supplementable.h |
@@ -167,7 +167,7 @@ public: |
protected: |
SupplementableTracing() { } |
- typedef HeapHashMap<const char*, Member<SupplementBase<T, true>>, PtrHash<const char*>> SupplementMap; |
+ typedef HeapHashMap<const char*, Member<SupplementBase<T, true>>, PtrHash<const char>> SupplementMap; |
SupplementMap m_supplements; |
}; |
@@ -176,7 +176,7 @@ class SupplementableTracing<T, false> { |
WTF_MAKE_NONCOPYABLE(SupplementableTracing); |
protected: |
SupplementableTracing() { } |
- typedef HashMap<const char*, OwnPtr<SupplementBase<T, false>>, PtrHash<const char*>> SupplementMap; |
+ typedef HashMap<const char*, OwnPtr<SupplementBase<T, false>>, PtrHash<const char>> SupplementMap; |
SupplementMap m_supplements; |
}; |