| Index: Source/core/dom/Node.h
|
| diff --git a/Source/core/dom/Node.h b/Source/core/dom/Node.h
|
| index 77eb482c2f2ceb9259f0e4b06e0b069e7d057b5c..1035eecb78746905a0d1862089cf125e9c0c44bc 100644
|
| --- a/Source/core/dom/Node.h
|
| +++ b/Source/core/dom/Node.h
|
| @@ -87,7 +87,9 @@ using StaticNodeList = StaticNodeTypeList<Node>;
|
| class TagCollection;
|
| class Text;
|
| class TouchEvent;
|
| +#if !ENABLE(OILPAN)
|
| template <typename T> struct WeakIdentifierMapTraits;
|
| +#endif
|
|
|
| const int nodeStyleChangeShift = 19;
|
|
|
| @@ -797,10 +799,10 @@ protected:
|
|
|
| private:
|
| friend class TreeShared<Node>;
|
| +#if !ENABLE(OILPAN)
|
| // FIXME: consider exposing proper API for this instead.
|
| friend struct WeakIdentifierMapTraits<Node>;
|
|
|
| -#if !ENABLE(OILPAN)
|
| void removedLastRef();
|
| #endif
|
| bool hasTreeSharedParent() const { return !!parentOrShadowHostNode(); }
|
|
|