| Index: third_party/WebKit/Source/core/editing/commands/ApplyStyleCommand.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/commands/ApplyStyleCommand.cpp b/third_party/WebKit/Source/core/editing/commands/ApplyStyleCommand.cpp
|
| index efc70fa6f0bc37af11deba3d29749528bedb8524..12e74730e6ca4d3359d32f7cbd970b1aede12e1f 100644
|
| --- a/third_party/WebKit/Source/core/editing/commands/ApplyStyleCommand.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/commands/ApplyStyleCommand.cpp
|
| @@ -1682,7 +1682,7 @@ float ApplyStyleCommand::computedFontSize(Node* node)
|
| if (!style)
|
| return 0;
|
|
|
| - CSSPrimitiveValue* value = toCSSPrimitiveValue(style->getPropertyCSSValue(CSSPropertyFontSize));
|
| + const CSSPrimitiveValue* value = toCSSPrimitiveValue(style->getPropertyCSSValue(CSSPropertyFontSize));
|
| if (!value)
|
| return 0;
|
|
|
|
|