| Index: third_party/WebKit/Source/core/css/CSSFontFaceSource.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/CSSFontFaceSource.cpp b/third_party/WebKit/Source/core/css/CSSFontFaceSource.cpp
|
| index c179f67ed8422ded98843f28a1e1596963b866de..2a7384bd11b18769e8f39e0db4b5bc42fc60b849 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSFontFaceSource.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSFontFaceSource.cpp
|
| @@ -49,14 +49,17 @@ PassRefPtr<SimpleFontData> CSSFontFaceSource::getFontData(
|
| }
|
|
|
| // See if we have a mapping in our FontData cache.
|
| - // TODO(drott): Check whether losing traits information here is problematic. crbug.com/516677
|
| + // TODO(drott): Check whether losing traits information here is problematic.
|
| + // crbug.com/516677
|
| FontCacheKey key = fontDescription.cacheKey(FontFaceCreationParams());
|
|
|
| RefPtr<SimpleFontData>& fontData =
|
| m_fontDataTable.add(key, nullptr).storedValue->value;
|
| if (!fontData)
|
| fontData = createFontData(fontDescription);
|
| - return fontData; // No release, because fontData is a reference to a RefPtr that is held in the m_fontDataTable.
|
| + // No release, because fontData is a reference to a RefPtr that is held in the
|
| + // m_fontDataTable.
|
| + return fontData;
|
| }
|
|
|
| DEFINE_TRACE(CSSFontFaceSource) {
|
|
|