| Index: third_party/WebKit/Source/platform/fonts/FontCache.cpp
|
| diff --git a/third_party/WebKit/Source/platform/fonts/FontCache.cpp b/third_party/WebKit/Source/platform/fonts/FontCache.cpp
|
| index 649e475b77286cadc795edc066c661081bacfdd4..d2b7c7c73da3eccd6a7aa465f8a5cf38fd7182d6 100644
|
| --- a/third_party/WebKit/Source/platform/fonts/FontCache.cpp
|
| +++ b/third_party/WebKit/Source/platform/fonts/FontCache.cpp
|
| @@ -33,6 +33,7 @@
|
|
|
| #include "platform/Histogram.h"
|
| #include "platform/RuntimeEnabledFeatures.h"
|
| +#include "platform/fonts/AcceptLanguagesResolver.h"
|
| #include "platform/fonts/AlternateFontFamily.h"
|
| #include "platform/fonts/FontCacheClient.h"
|
| #include "platform/fonts/FontCacheKey.h"
|
| @@ -161,6 +162,11 @@ PassRefPtr<OpenTypeVerticalData> FontCache::getVerticalData(const FontFileKey& k
|
| return verticalData;
|
| }
|
|
|
| +void FontCache::acceptLanguagesChanged(const String& acceptLanguages)
|
| +{
|
| + AcceptLanguagesResolver::acceptLanguagesChanged(acceptLanguages);
|
| +}
|
| +
|
| static FontDataCache* gFontDataCache = 0;
|
|
|
| PassRefPtr<SimpleFontData> FontCache::getFontData(const FontDescription& fontDescription, const AtomicString& family, bool checkingAlternateName, ShouldRetain shouldRetain)
|
|
|