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

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

Issue 424983002: Stop using WebCore namespace in generated code (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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/rendering/RenderLayerScrollableArea.cpp ('k') | Source/modules/BUILD.gn » ('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 da094b7c23a2eb152f1051c292d11487c8c03c90..ba93b6c89a80ffeaf69421abf6793986d86cb76d 100644
--- a/Source/core/xml/XPathGrammar.y
+++ b/Source/core/xml/XPathGrammar.y
@@ -46,26 +46,26 @@
#define YYDEBUG 0
#define YYMAXDEPTH 10000
-using namespace WebCore;
+using namespace blink;
using namespace XPath;
%}
%pure-parser
-%parse-param { WebCore::XPath::Parser* parser }
+%parse-param { blink::XPath::Parser* parser }
%union
{
- WebCore::XPath::Step::Axis axis;
- WebCore::XPath::Step::NodeTest* nodeTest;
- WebCore::XPath::NumericOp::Opcode numop;
- WebCore::XPath::EqTestOp::Opcode eqop;
+ blink::XPath::Step::Axis axis;
+ blink::XPath::Step::NodeTest* nodeTest;
+ blink::XPath::NumericOp::Opcode numop;
+ blink::XPath::EqTestOp::Opcode eqop;
String* str;
- WebCore::XPath::Expression* expr;
- WillBeHeapVector<OwnPtrWillBeMember<WebCore::XPath::Predicate> >* predList;
- WillBeHeapVector<OwnPtrWillBeMember<WebCore::XPath::Expression> >* argList;
- WebCore::XPath::Step* step;
- WebCore::XPath::LocationPath* locationPath;
+ blink::XPath::Expression* expr;
+ WillBeHeapVector<OwnPtrWillBeMember<blink::XPath::Predicate> >* predList;
+ WillBeHeapVector<OwnPtrWillBeMember<blink::XPath::Expression> >* argList;
+ blink::XPath::Step* step;
+ blink::XPath::LocationPath* locationPath;
}
%{
« no previous file with comments | « Source/core/rendering/RenderLayerScrollableArea.cpp ('k') | Source/modules/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698