Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(207)

Unified Diff: third_party/WebKit/Source/bindings/core/v8/RetainedDOMInfo.cpp

Issue 1839003002: WTF: De-specialize PtrHash<T>. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove extra equal() definitions. Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/api/LineLayoutItem.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/bindings/core/v8/RetainedDOMInfo.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/RetainedDOMInfo.cpp b/third_party/WebKit/Source/bindings/core/v8/RetainedDOMInfo.cpp
index 438aaa6fe0db5cc73aa1bce401424cd3d4e52c09..b150850fc164e40c4a8d28885dcf05fba00cdfdb 100644
--- a/third_party/WebKit/Source/bindings/core/v8/RetainedDOMInfo.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/RetainedDOMInfo.cpp
@@ -73,7 +73,7 @@ bool RetainedDOMInfo::IsEquivalent(v8::RetainedObjectInfo* other)
intptr_t RetainedDOMInfo::GetHash()
{
- return PtrHash<void*>::hash(m_root);
+ return PtrHash<void>::hash(m_root);
}
const char* RetainedDOMInfo::GetGroupLabel()
@@ -122,7 +122,7 @@ bool ActiveDOMObjectsInfo::IsEquivalent(v8::RetainedObjectInfo* other)
intptr_t ActiveDOMObjectsInfo::GetHash()
{
- return PtrHash<void*>::hash(this);
+ return PtrHash<void>::hash(this);
}
const char* ActiveDOMObjectsInfo::GetGroupLabel()
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/api/LineLayoutItem.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698