| Index: Source/core/rendering/RenderThemeChromiumFontProviderWin.cpp
|
| diff --git a/Source/core/rendering/RenderThemeChromiumFontProviderWin.cpp b/Source/core/rendering/RenderThemeChromiumFontProviderWin.cpp
|
| index 9d4dbcca1ccd875fe744ec8c9826a5451a9f37bd..a4225c27edf6a8acce13953d5c542cffec45e7f3 100644
|
| --- a/Source/core/rendering/RenderThemeChromiumFontProviderWin.cpp
|
| +++ b/Source/core/rendering/RenderThemeChromiumFontProviderWin.cpp
|
| @@ -119,13 +119,13 @@ static float systemFontSize(const LOGFONT& font)
|
| }
|
|
|
| // static
|
| -void RenderThemeChromiumFontProvider::systemFont(int propId, FontDescription& fontDescription)
|
| +void RenderThemeChromiumFontProvider::systemFont(CSSValueID valueID, FontDescription& fontDescription)
|
| {
|
| // This logic owes much to RenderThemeSafari.cpp.
|
| FontDescription* cachedDesc = 0;
|
| AtomicString faceName;
|
| float fontSize = 0;
|
| - switch (propId) {
|
| + switch (valueID) {
|
| case CSSValueSmallCaption:
|
| cachedDesc = &smallSystemFont();
|
| if (!smallSystemFont().isAbsoluteSize()) {
|
|
|