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; |
} |
%{ |