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

Unified Diff: third_party/WebKit/Source/core/dom/NodeFilter.cpp

Issue 2068053002: Rename Blink constants generated from IDL files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 4 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
Index: third_party/WebKit/Source/core/dom/NodeFilter.cpp
diff --git a/third_party/WebKit/Source/core/dom/NodeFilter.cpp b/third_party/WebKit/Source/core/dom/NodeFilter.cpp
index d0a1fcc75a0fed123189d65369dd6f59c143deb3..454c48199660a856040afbb89d677667e6ed61fd 100644
--- a/third_party/WebKit/Source/core/dom/NodeFilter.cpp
+++ b/third_party/WebKit/Source/core/dom/NodeFilter.cpp
@@ -28,7 +28,7 @@ namespace blink {
unsigned NodeFilter::acceptNode(Node* node, ExceptionState& exceptionState) const
{
- return m_condition ? m_condition->acceptNode(node, exceptionState) : FILTER_ACCEPT;
+ return m_condition ? m_condition->acceptNode(node, exceptionState) : kFilterAccept;
}
DEFINE_TRACE(NodeFilter)
« no previous file with comments | « third_party/WebKit/Source/core/dom/NodeFilter.h ('k') | third_party/WebKit/Source/core/dom/NodeIterator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698