| Index: Source/core/xml/XPathGrammar.y
|
| diff --git a/Source/core/xml/XPathGrammar.y b/Source/core/xml/XPathGrammar.y
|
| index 6774e5d043b15a813a7ac5fd577e2107587a7889..35468d5288bcf50098774d84abef31e59c91ea9c 100644
|
| --- a/Source/core/xml/XPathGrammar.y
|
| +++ b/Source/core/xml/XPathGrammar.y
|
| @@ -391,14 +391,14 @@ PathExpr:
|
| FilterExpr '/' RelativeLocationPath
|
| {
|
| $3->setAbsolute(true);
|
| - $$ = new Path($1, $3);
|
| + $$ = new blink::XPath::Path($1, $3);
|
| }
|
| |
|
| FilterExpr DescendantOrSelf RelativeLocationPath
|
| {
|
| $3->insertFirstStep($2);
|
| $3->setAbsolute(true);
|
| - $$ = new Path($1, $3);
|
| + $$ = new blink::XPath::Path($1, $3);
|
| }
|
| ;
|
|
|
| @@ -407,7 +407,7 @@ FilterExpr:
|
| |
|
| PrimaryExpr PredicateList
|
| {
|
| - $$ = new Filter($1, *$2);
|
| + $$ = new blink::XPath::Filter($1, *$2);
|
| }
|
| ;
|
|
|
|
|