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

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

Issue 2390543002: Reflow comments in core/dom/. (Closed)
Patch Set: Reformat comments in core/dom/. Created 4 years, 2 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/NodeIteratorBase.cpp
diff --git a/third_party/WebKit/Source/core/dom/NodeIteratorBase.cpp b/third_party/WebKit/Source/core/dom/NodeIteratorBase.cpp
index b5696eb78e6cd889ffaabbfcb03305a75b50392e..03b57b938fd0596110f6e177e0df273ff9de066c 100644
--- a/third_party/WebKit/Source/core/dom/NodeIteratorBase.cpp
+++ b/third_party/WebKit/Source/core/dom/NodeIteratorBase.cpp
@@ -37,8 +37,8 @@ NodeIteratorBase::NodeIteratorBase(Node* rootNode,
unsigned NodeIteratorBase::acceptNode(Node* node,
ExceptionState& exceptionState) const {
- // The bit twiddling here is done to map DOM node types, which are given as integers from
- // 1 through 14, to whatToShow bit masks.
+ // The bit twiddling here is done to map DOM node types, which are given as
+ // integers from 1 through 14, to whatToShow bit masks.
if (!(((1 << (node->getNodeType() - 1)) & m_whatToShow)))
return NodeFilter::kFilterSkip;
if (!m_filter)
« no previous file with comments | « third_party/WebKit/Source/core/dom/NodeIterator.cpp ('k') | third_party/WebKit/Source/core/dom/NodeListsNodeData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698