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

Unified Diff: third_party/WebKit/Source/core/dom/NodeTraversal.h

Issue 1798043002: Removed CORE_EXPORT from APIs at NodeTraversal. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moved DOM Traversing API to RadioInputTYpe 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/html/forms/RadioInputType.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/dom/NodeTraversal.h
diff --git a/third_party/WebKit/Source/core/dom/NodeTraversal.h b/third_party/WebKit/Source/core/dom/NodeTraversal.h
index 031b62a9c94c76f89029a4c179d690f33ba998ad..9062ab430104a64f258d5c7ecd56523a4e4bfe5d 100644
--- a/third_party/WebKit/Source/core/dom/NodeTraversal.h
+++ b/third_party/WebKit/Source/core/dom/NodeTraversal.h
@@ -50,7 +50,7 @@ public:
// This can be used to restrict traversal to a particular sub-tree.
static Node* next(const Node& current) { return traverseNextTemplate(current); }
static Node* next(const ContainerNode& current) { return traverseNextTemplate(current); }
- CORE_EXPORT static Node* next(const Node& current, const Node* stayWithin) { return traverseNextTemplate(current, stayWithin); }
+ static Node* next(const Node& current, const Node* stayWithin) { return traverseNextTemplate(current, stayWithin); }
static Node* next(const ContainerNode& current, const Node* stayWithin) { return traverseNextTemplate(current, stayWithin); }
// Like next, but skips children and starts with the next sibling.
@@ -63,7 +63,7 @@ public:
static Node& lastWithinOrSelf(Node&);
// Does a reverse pre-order traversal to find the node that comes before the current one in document order
- CORE_EXPORT static Node* previous(const Node&, const Node* stayWithin = 0);
+ static Node* previous(const Node&, const Node* stayWithin = 0);
// Like previous, but skips children and starts with the next sibling.
static Node* previousSkippingChildren(const Node&, const Node* stayWithin = 0);
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/html/forms/RadioInputType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698