| Index: Source/core/dom/DOMNodeIds.h
|
| diff --git a/Source/core/dom/DOMNodeIds.h b/Source/core/dom/DOMNodeIds.h
|
| index 2defabbe288955e26a07a79baf692fed5466562a..97934a5e1dc4a16611b80fe5a4727aeea6e6fb7f 100644
|
| --- a/Source/core/dom/DOMNodeIds.h
|
| +++ b/Source/core/dom/DOMNodeIds.h
|
| @@ -6,12 +6,11 @@
|
| #define DOMNodeIds_h
|
|
|
| #include "core/CoreExport.h"
|
| +#include "core/dom/Node.h"
|
| #include "core/dom/WeakIdentifierMap.h"
|
|
|
| namespace blink {
|
|
|
| -class Node;
|
| -
|
| #if !ENABLE(OILPAN)
|
| template<> struct WeakIdentifierMapTraits<Node> {
|
| static void removedFromIdentifierMap(Node*);
|
| @@ -19,7 +18,8 @@ template<> struct WeakIdentifierMapTraits<Node> {
|
| };
|
| #endif
|
|
|
| -typedef WeakIdentifierMap<Node> WeakNodeMap;
|
| +extern template class WeakIdentifierMap<Node>;
|
| +using WeakNodeMap = WeakIdentifierMap<Node>;
|
|
|
| class CORE_EXPORT DOMNodeIds {
|
| public:
|
|
|