summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/core/xml/XPathUtil.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/core/xml/XPathUtil.h')
-rw-r--r--chromium/third_party/WebKit/Source/core/xml/XPathUtil.h21
1 files changed, 10 insertions, 11 deletions
diff --git a/chromium/third_party/WebKit/Source/core/xml/XPathUtil.h b/chromium/third_party/WebKit/Source/core/xml/XPathUtil.h
index 9db3314ec9d..aacec1790f4 100644
--- a/chromium/third_party/WebKit/Source/core/xml/XPathUtil.h
+++ b/chromium/third_party/WebKit/Source/core/xml/XPathUtil.h
@@ -32,21 +32,20 @@
namespace WebCore {
- class Node;
+class Node;
- namespace XPath {
+namespace XPath {
- /* @return whether the given node is the root node */
- bool isRootDomNode(Node*);
+// @return whether the given node is the root node
+bool isRootDomNode(Node*);
- /* @return the 'string-value' of the given node as specified by http://www.w3.org/TR/xpath */
- String stringValue(Node*);
+// @return the 'string-value' of the given node as specified by http://www.w3.org/TR/xpath
+String stringValue(Node*);
- /* @return whether the given node is a valid context node */
- bool isValidContextNode(Node*);
-
- }
+// @return whether the given node is a valid context node
+bool isValidContextNode(Node*);
}
-#endif // XPath_Util_H
+}
+#endif // XPathUtil_h