Index: third_party/WebKit/Source/core/layout/api/LineLayoutItem.h |
diff --git a/third_party/WebKit/Source/core/layout/api/LineLayoutItem.h b/third_party/WebKit/Source/core/layout/api/LineLayoutItem.h |
index c4b1e3891a4937dbe57ed8771063ba3a65cb7da8..a42d636ee90050fa1850c1fa854bf874445c2bbc 100644 |
--- a/third_party/WebKit/Source/core/layout/api/LineLayoutItem.h |
+++ b/third_party/WebKit/Source/core/layout/api/LineLayoutItem.h |
@@ -422,10 +422,10 @@ public: |
struct LineLayoutItemHash { |
STATIC_ONLY(LineLayoutItemHash); |
- static unsigned hash(const LineLayoutItem& key) { return WTF::PtrHash<LayoutObject*>::hash(key.m_layoutObject); } |
+ static unsigned hash(const LineLayoutItem& key) { return WTF::PtrHash<LayoutObject>::hash(key.m_layoutObject); } |
static bool equal(const LineLayoutItem& a, const LineLayoutItem& b) |
{ |
- return WTF::PtrHash<LayoutObject*>::equal(a.m_layoutObject, b.m_layoutObject); |
+ return WTF::PtrHash<LayoutObject>::equal(a.m_layoutObject, b.m_layoutObject); |
} |
static const bool safeToCompareToEmptyOrDeleted = true; |
}; |