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

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

Issue 112933010: Split out CSSParser public API Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 12 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
Index: Source/core/css/CSSValuePool.cpp
diff --git a/Source/core/css/CSSValuePool.cpp b/Source/core/css/CSSValuePool.cpp
index 58374278c5aa47efbeaab076249a39dc24742acc..24846c378908b7b7b62cbffe3296c547ca49e463 100644
--- a/Source/core/css/CSSValuePool.cpp
+++ b/Source/core/css/CSSValuePool.cpp
@@ -26,7 +26,7 @@
#include "config.h"
#include "core/css/CSSValuePool.h"
-#include "core/css/parser/BisonCSSParser.h"
+#include "core/css/parser/CSSParser.h"
#include "core/css/CSSValueList.h"
#include "core/rendering/style/RenderStyle.h"
@@ -137,7 +137,7 @@ PassRefPtr<CSSValueList> CSSValuePool::createFontFaceValue(const AtomicString& s
RefPtr<CSSValueList>& value = m_fontFaceValueCache.add(string, 0).iterator->value;
if (!value)
- value = BisonCSSParser::parseFontFaceValue(string);
+ value = CSSParser::parseFontFaceValue(string);
return value;
}

Powered by Google App Engine
This is Rietveld 408576698