| Index: Source/core/dom/NodeRenderingTraversal.h
|
| diff --git a/Source/core/dom/NodeRenderingTraversal.h b/Source/core/dom/NodeRenderingTraversal.h
|
| index eca63d906cb3ffb470be1a655b726b525289f894..5df7762055af6017a1925752ea8ba905e294e1c5 100644
|
| --- a/Source/core/dom/NodeRenderingTraversal.h
|
| +++ b/Source/core/dom/NodeRenderingTraversal.h
|
| @@ -27,6 +27,7 @@
|
| #ifndef NodeRenderingTraversal_h
|
| #define NodeRenderingTraversal_h
|
|
|
| +#include "core/CoreExport.h"
|
| #include "core/dom/Element.h"
|
|
|
| namespace blink {
|
| @@ -56,10 +57,10 @@ private:
|
| RawPtrWillBeMember<const InsertionPoint> m_insertionPoint;
|
| };
|
|
|
| -ContainerNode* parent(const Node&, ParentDetails* = 0);
|
| +CORE_EXPORT ContainerNode* parent(const Node&, ParentDetails* = 0);
|
| bool contains(const ContainerNode&, const Node&);
|
| -Node* firstChild(const Node&);
|
| -Node* nextSibling(const Node&);
|
| +CORE_EXPORT Node* firstChild(const Node&);
|
| +CORE_EXPORT Node* nextSibling(const Node&);
|
| Node* previousSibling(const Node&);
|
| Node* previous(const Node&, const Node* stayWithin);
|
| Node* next(const Node&, const Node* stayWithin);
|
|
|