Chromium Code Reviews

Unified Diff: Source/core/css/CSSStyleSheet.cpp

Issue 100453011: Rename css/CSSParser to css/parser/BisonCSSParser. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « Source/core/css/CSSStyleSheet.h ('k') | Source/core/css/CSSTokenizer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSStyleSheet.cpp
diff --git a/Source/core/css/CSSStyleSheet.cpp b/Source/core/css/CSSStyleSheet.cpp
index e7fe16ecd2769e62e8f8e4b02e50ff469ca561e8..88f6c9055619ad0f087d156d73f095420bdb7a6c 100644
--- a/Source/core/css/CSSStyleSheet.cpp
+++ b/Source/core/css/CSSStyleSheet.cpp
@@ -26,7 +26,7 @@
#include "bindings/v8/ExceptionState.h"
#include "core/css/CSSCharsetRule.h"
#include "core/css/CSSImportRule.h"
-#include "core/css/CSSParser.h"
+#include "core/css/parser/BisonCSSParser.h"
#include "core/css/CSSRuleList.h"
#include "core/css/CSSStyleRule.h"
#include "core/css/MediaList.h"
@@ -302,7 +302,7 @@ unsigned CSSStyleSheet::insertRule(const String& ruleString, unsigned index, Exc
exceptionState.throwUninformativeAndGenericDOMException(IndexSizeError);
return 0;
}
- CSSParser p(m_contents->parserContext(), UseCounter::getFrom(this));
+ BisonCSSParser p(m_contents->parserContext(), UseCounter::getFrom(this));
RefPtr<StyleRuleBase> rule = p.parseRule(m_contents.get(), ruleString);
if (!rule) {
« no previous file with comments | « Source/core/css/CSSStyleSheet.h ('k') | Source/core/css/CSSTokenizer.h » ('j') | no next file with comments »

Powered by Google App Engine