| Index: third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp b/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| index 1bef3d692014ce44db6f4c819d86b0c49551ad3c..793642c5151863b5744ceed4e122f0a8a4f35819 100644
|
| --- a/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| +++ b/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| @@ -57,6 +57,7 @@
|
| #include "core/css/CSSValueList.h"
|
| #include "core/css/CSSValuePair.h"
|
| #include "core/css/PropertyRegistry.h"
|
| +#include "core/css/zoomAdjustedPixelValue.h"
|
| #include "core/layout/LayoutBlock.h"
|
| #include "core/layout/LayoutBox.h"
|
| #include "core/layout/LayoutGrid.h"
|
| @@ -76,13 +77,6 @@ inline static bool isFlexOrGrid(const ComputedStyle* style) {
|
| return style && style->isDisplayFlexibleOrGridBox();
|
| }
|
|
|
| -inline static CSSPrimitiveValue* zoomAdjustedPixelValue(
|
| - double value,
|
| - const ComputedStyle& style) {
|
| - return CSSPrimitiveValue::create(adjustFloatForAbsoluteZoom(value, style),
|
| - CSSPrimitiveValue::UnitType::Pixels);
|
| -}
|
| -
|
| inline static CSSValue* zoomAdjustedPixelValueOrAuto(
|
| const Length& length,
|
| const ComputedStyle& style) {
|
|
|