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

Unified Diff: third_party/WebKit/Source/core/dom/custom/CustomElementDescriptorHash.h

Issue 1996213002: Add a tuple of name, local name for hashing custom element definitions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Give CustomElementDefinition a CustomElementDescriptor. Created 4 years, 7 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
Index: third_party/WebKit/Source/core/dom/custom/CustomElementDescriptorHash.h
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementDescriptorHash.h b/third_party/WebKit/Source/core/dom/custom/CustomElementDescriptorHash.h
new file mode 100644
index 0000000000000000000000000000000000000000..5d8c43f6bf40eedccf09e3f3578983b70395d514
--- /dev/null
+++ b/third_party/WebKit/Source/core/dom/custom/CustomElementDescriptorHash.h
@@ -0,0 +1,54 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CustomElementDescriptorHash_h
+#define CustomElementDescriptorHash_h
+
+#include "core/dom/custom/CustomElementDescriptor.h"
+#include "wtf/HashFunctions.h"
+#include "wtf/HashTraits.h"
+#include "wtf/text/AtomicStringHash.h"
+
+namespace blink {
+
+struct CustomElementDescriptorHash {
+ STATIC_ONLY(CustomElementDescriptorHash);
+ static unsigned hash(const CustomElementDescriptor& descriptor)
+ {
+ return WTF::hashInts(
+ AtomicStringHash::hash(descriptor.name()),
+ AtomicStringHash::hash(descriptor.localName()));
+ }
+
+ static bool equal(
+ const CustomElementDescriptor& a,
+ const CustomElementDescriptor& b)
+ {
+ return a == b;
+ }
+
+ static const bool safeToCompareToEmptyOrDeleted = true;
+};
+
+} // namespace blink
+
+namespace WTF {
+
+template<>
+struct HashTraits<blink::CustomElementDescriptor>
+ : SimpleClassHashTraits<blink::CustomElementDescriptor> {
+
Yuki 2016/05/20 05:57:00 nit: no need an empty line?
+ STATIC_ONLY(HashTraits);
+ static const bool emptyValueIsZero =
+ HashTraits<AtomicString>::emptyValueIsZero;
+};
+
+template<>
+struct DefaultHash<blink::CustomElementDescriptor> {
+ typedef blink::CustomElementDescriptorHash Hash;
yosin_UTC9 2016/05/20 09:01:16 nit: Let's be C++11'ish ;-) using Hash = blink::C
+};
+
+} // namespace WTF
+
+#endif // CustomElementDescriptorHash_h

Powered by Google App Engine
This is Rietveld 408576698