Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Unified Diff: third_party/WebKit/Source/core/css/properties/CSSPropertyAPIClipPath.cpp

Issue 2878383002: Added null safety for CSSParserContext in CSSPropertyShapeUtils. (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/properties/CSSPropertyAPIShapeOutside.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/css/properties/CSSPropertyAPIClipPath.cpp
diff --git a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIClipPath.cpp b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIClipPath.cpp
index 81d20366451b2de079cd99ef0269c85f04557760..c6f4544042ab07df52849af081e0b7df5538c2dc 100644
--- a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIClipPath.cpp
+++ b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIClipPath.cpp
@@ -18,7 +18,7 @@ const CSSValue* CSSPropertyAPIClipPath::parseSingleValue(
return CSSPropertyParserHelpers::ConsumeIdent(range);
if (CSSURIValue* url = CSSPropertyParserHelpers::ConsumeUrl(range, &context))
return url;
- return CSSPropertyShapeUtils::ConsumeBasicShape(range, &context);
+ return CSSPropertyShapeUtils::ConsumeBasicShape(range, context);
}
} // namespace blink
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/properties/CSSPropertyAPIShapeOutside.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698