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

Unified Diff: Source/core/dom/NodeRenderingTraversal.h

Issue 1074703002: Componentization: make core/dom visible for blink_web and blink_tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 8 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
« no previous file with comments | « Source/core/dom/Microtask.h ('k') | Source/core/dom/PendingScript.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « Source/core/dom/Microtask.h ('k') | Source/core/dom/PendingScript.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698