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

Unified Diff: Source/core/xml/XPathGrammar.y

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/XPathFunctions.h ('k') | Source/core/xml/XPathNodeSet.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/xml/XPathGrammar.y
diff --git a/Source/core/xml/XPathGrammar.y b/Source/core/xml/XPathGrammar.y
index 9b87971c59079acc72bf9a78c9aad0416586efee..da094b7c23a2eb152f1051c292d11487c8c03c90 100644
--- a/Source/core/xml/XPathGrammar.y
+++ b/Source/core/xml/XPathGrammar.y
@@ -56,16 +56,16 @@ using namespace XPath;
%union
{
- Step::Axis axis;
- Step::NodeTest* nodeTest;
- NumericOp::Opcode numop;
- EqTestOp::Opcode eqop;
+ WebCore::XPath::Step::Axis axis;
+ WebCore::XPath::Step::NodeTest* nodeTest;
+ WebCore::XPath::NumericOp::Opcode numop;
+ WebCore::XPath::EqTestOp::Opcode eqop;
String* str;
- Expression* expr;
- WillBeHeapVector<OwnPtrWillBeMember<Predicate> >* predList;
- WillBeHeapVector<OwnPtrWillBeMember<Expression> >* argList;
- Step* step;
- LocationPath* locationPath;
+ WebCore::XPath::Expression* expr;
+ WillBeHeapVector<OwnPtrWillBeMember<WebCore::XPath::Predicate> >* predList;
+ WillBeHeapVector<OwnPtrWillBeMember<WebCore::XPath::Expression> >* argList;
+ WebCore::XPath::Step* step;
+ WebCore::XPath::LocationPath* locationPath;
}
%{
« no previous file with comments | « Source/core/xml/XPathFunctions.h ('k') | Source/core/xml/XPathNodeSet.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698