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, |