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

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

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
Index: third_party/WebKit/Source/core/dom/custom/CustomElementRegistry.h
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementRegistry.h b/third_party/WebKit/Source/core/dom/custom/CustomElementRegistry.h
index a5234b4d8351652bbdf7e95d340fdcf3e84dc57e..db80ca9310ee475910a06748c0e72f745fe9a3f8 100644
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementRegistry.h
+++ b/third_party/WebKit/Source/core/dom/custom/CustomElementRegistry.h
@@ -62,7 +62,7 @@ protected:
CustomElementDefinition* find(const CustomElementDescriptor&) const;
private:
- typedef WillBeHeapHashMap<CustomElementDescriptor, RefPtrWillBeMember<CustomElementDefinition>> DefinitionMap;
+ typedef HeapHashMap<CustomElementDescriptor, Member<CustomElementDefinition>> DefinitionMap;
DefinitionMap m_definitions;
HashSet<AtomicString> m_registeredTypeNames;
bool m_documentWasDetached;

Powered by Google App Engine
This is Rietveld 408576698