| Index: Source/core/css/FontFace.cpp
|
| diff --git a/Source/core/css/FontFace.cpp b/Source/core/css/FontFace.cpp
|
| index 3b35cbca0fbf3e93863668c87977911889a45684..aac3b7e4adda019bfc6f6e90b0456158b606e72f 100644
|
| --- a/Source/core/css/FontFace.cpp
|
| +++ b/Source/core/css/FontFace.cpp
|
| @@ -40,7 +40,7 @@
|
| #include "bindings/v8/ScriptState.h"
|
| #include "core/css/CSSFontFace.h"
|
| #include "core/css/CSSFontFaceSrcValue.h"
|
| -#include "core/css/CSSParser.h"
|
| +#include "core/css/parser/BisonCSSParser.h"
|
| #include "core/css/CSSPrimitiveValue.h"
|
| #include "core/css/CSSUnicodeRangeValue.h"
|
| #include "core/css/CSSValueList.h"
|
| @@ -94,7 +94,7 @@ static PassRefPtr<CSSValue> parseCSSValue(const String& s, CSSPropertyID propert
|
| if (s.isEmpty())
|
| return 0;
|
| RefPtr<MutableStylePropertySet> parsedStyle = MutableStylePropertySet::create();
|
| - CSSParser::parseValue(parsedStyle.get(), propertyID, s, true, HTMLStandardMode, 0);
|
| + BisonCSSParser::parseValue(parsedStyle.get(), propertyID, s, true, HTMLStandardMode, 0);
|
| return parsedStyle->getPropertyCSSValue(propertyID);
|
| }
|
|
|
|
|