| Index: third_party/WebKit/Source/core/css/FontFace.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/FontFace.cpp b/third_party/WebKit/Source/core/css/FontFace.cpp
|
| index 32f009aa06d556fa8223d34b37b8eff81a724594..fba7e9b4a237a6efb6dbf01762a87ed54a992990 100644
|
| --- a/third_party/WebKit/Source/core/css/FontFace.cpp
|
| +++ b/third_party/WebKit/Source/core/css/FontFace.cpp
|
| @@ -555,12 +555,12 @@ static FontDisplay CSSValueToFontDisplay(CSSValue* value)
|
|
|
| static PassOwnPtrWillBeRawPtr<CSSFontFace> createCSSFontFace(FontFace* fontFace, CSSValue* unicodeRange)
|
| {
|
| - Vector<CSSFontFace::UnicodeRange> ranges;
|
| + Vector<UnicodeRange> ranges;
|
| if (CSSValueList* rangeList = toCSSValueList(unicodeRange)) {
|
| unsigned numRanges = rangeList->length();
|
| for (unsigned i = 0; i < numRanges; i++) {
|
| CSSUnicodeRangeValue* range = toCSSUnicodeRangeValue(rangeList->item(i));
|
| - ranges.append(CSSFontFace::UnicodeRange(range->from(), range->to()));
|
| + ranges.append(UnicodeRange(range->from(), range->to()));
|
| }
|
| }
|
|
|
|
|