Index: third_party/WebKit/Source/core/css/properties/CSSPropertyAPIOutlineColor.cpp |
diff --git a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIOutlineColor.cpp b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIOutlineColor.cpp |
index f12d757a96c54d735fe0af34c124b05059d20f09..93e88dbe4f5be2504cb9335104217bb771962717 100644 |
--- a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIOutlineColor.cpp |
+++ b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIOutlineColor.cpp |
@@ -12,11 +12,11 @@ |
const CSSValue* CSSPropertyAPIOutlineColor::parseSingleValue( |
CSSParserTokenRange& range, |
- const CSSParserContext& context) { |
+ const CSSParserContext* context) { |
// Allow the special focus color even in HTML Standard parsing mode. |
if (range.peek().id() == CSSValueWebkitFocusRingColor) |
return CSSPropertyParserHelpers::consumeIdent(range); |
- return CSSPropertyParserHelpers::consumeColor(range, context.mode()); |
+ return CSSPropertyParserHelpers::consumeColor(range, context->mode()); |
} |
} // namespace blink |