Index: third_party/WebKit/Source/core/css/properties/CSSPropertyAPIBorderRadius.cpp |
diff --git a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIBorderRadius.cpp b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIBorderRadius.cpp |
index 31d4fad577c328528737994abcfb64c875ddcf67..151576064674bc3e9a3879b1d511ad811a68ced7 100644 |
--- a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIBorderRadius.cpp |
+++ b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIBorderRadius.cpp |
@@ -12,13 +12,13 @@ |
const CSSValue* CSSPropertyAPIBorderRadius::parseSingleValue( |
CSSParserTokenRange& range, |
- const CSSParserContext& context) { |
+ const CSSParserContext* context) { |
CSSValue* parsedValue1 = CSSPropertyParserHelpers::consumeLengthOrPercent( |
- range, context.mode(), ValueRangeNonNegative); |
+ range, context->mode(), ValueRangeNonNegative); |
if (!parsedValue1) |
return nullptr; |
CSSValue* parsedValue2 = CSSPropertyParserHelpers::consumeLengthOrPercent( |
- range, context.mode(), ValueRangeNonNegative); |
+ range, context->mode(), ValueRangeNonNegative); |
if (!parsedValue2) |
parsedValue2 = parsedValue1; |
return CSSValuePair::create(parsedValue1, parsedValue2, |