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

Unified Diff: Source/core/xml/XPathVariableReference.h

Issue 344553002: Fix style erros in XPath-related files. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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
« no previous file with comments | « Source/core/xml/XPathValue.cpp ('k') | Source/core/xml/XPathVariableReference.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/xml/XPathVariableReference.h
diff --git a/Source/core/xml/XPathVariableReference.h b/Source/core/xml/XPathVariableReference.h
index a53599ed70cc32771dffdc268e203363f54aa390..d0345744a6106199049c33797db97ec86faeaaba 100644
--- a/Source/core/xml/XPathVariableReference.h
+++ b/Source/core/xml/XPathVariableReference.h
@@ -30,19 +30,21 @@
namespace WebCore {
- namespace XPath {
-
- // Variable references are not used with XPathEvaluator.
- class VariableReference FINAL : public Expression {
- public:
- explicit VariableReference(const String& name);
- private:
- virtual Value evaluate() const OVERRIDE;
- virtual Value::Type resultType() const OVERRIDE { ASSERT_NOT_REACHED(); return Value::NumberValue; }
- String m_name;
- };
-
- }
+namespace XPath {
+
+// Variable references are not used with XPathEvaluator.
+class VariableReference FINAL : public Expression {
+public:
+ explicit VariableReference(const String& name);
+
+private:
+ virtual Value evaluate() const OVERRIDE;
+ virtual Value::Type resultType() const OVERRIDE { ASSERT_NOT_REACHED(); return Value::NumberValue; }
+
+ String m_name;
+};
+
}
-#endif // XPath_VariableReference_H
+}
+#endif // XPathVariableReference_h
« no previous file with comments | « Source/core/xml/XPathValue.cpp ('k') | Source/core/xml/XPathVariableReference.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698