| Index: third_party/WebKit/Source/core/layout/LayoutThemeFontProviderWin.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutThemeFontProviderWin.cpp b/third_party/WebKit/Source/core/layout/LayoutThemeFontProviderWin.cpp
|
| index 33a5651a1406857522ee0ab3f999961e0a639fdb..d44861c1e02c8752bff3a02ac7db987b702b0e1c 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutThemeFontProviderWin.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutThemeFontProviderWin.cpp
|
| @@ -34,8 +34,8 @@ namespace blink {
|
|
|
| // Converts |points| to pixels. One point is 1/72 of an inch.
|
| static float pointsToPixels(float points) {
|
| - float pixelsPerInch = 96.0f * FontCache::deviceScaleFactor();
|
| - static const float pointsPerInch = 72.0f;
|
| + const float pixelsPerInch = 96.0f;
|
| + const float pointsPerInch = 72.0f;
|
| return points / pointsPerInch * pixelsPerInch;
|
| }
|
|
|
|
|