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

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

Issue 2940933003: DO NOT SUBMIT results of new clang-format (Closed)
Patch Set: Created 3 years, 6 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.h
diff --git a/third_party/WebKit/Source/core/dom/NodeFilter.h b/third_party/WebKit/Source/core/dom/NodeFilter.h
index 870b6a97fb3a0af5f9515d464e7b0fb37105c7c2..02ff6890d45923e2359deeac363c8ed3b3561790 100644
--- a/third_party/WebKit/Source/core/dom/NodeFilter.h
+++ b/third_party/WebKit/Source/core/dom/NodeFilter.h
@@ -37,17 +37,17 @@ class NodeFilter final {
public:
/**
- * The following constants are returned by the acceptNode()
- * method:
- */
+ * The following constants are returned by the acceptNode()
+ * method:
+ */
enum { kFilterAccept = 1, kFilterReject = 2, kFilterSkip = 3 };
/**
- * These are the available values for the whatToShow parameter.
- * They are the same as the set of possible types for Node, and
- * their values are derived by using a bit position corresponding
- * to the value of NodeType for the equivalent node type.
- */
+ * These are the available values for the whatToShow parameter.
+ * They are the same as the set of possible types for Node, and
+ * their values are derived by using a bit position corresponding
+ * to the value of NodeType for the equivalent node type.
+ */
enum {
kShowAll = 0xFFFFFFFF,
kShowElement = 0x00000001,

Powered by Google App Engine
This is Rietveld 408576698