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

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

Issue 2786153004: Changed CSSParserContext argument from * to & for null safety. (Closed)
Patch Set: Updated syntax where ref is passed as pointer Created 3 years, 9 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
Index: third_party/WebKit/Source/core/css/properties/CSSPropertyAPIColumnCount.cpp
diff --git a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIColumnCount.cpp b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIColumnCount.cpp
index 585f6b94c0f41e79b6f5c40100af1d9bb66bc0e2..7f56e1515aaeb63a4ca60a15f50d9687605c6ac7 100644
--- a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIColumnCount.cpp
+++ b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIColumnCount.cpp
@@ -10,7 +10,7 @@ namespace blink {
const CSSValue* CSSPropertyAPIColumnCount::parseSingleValue(
CSSParserTokenRange& range,
- const CSSParserContext* context) {
+ const CSSParserContext& context) {
return CSSPropertyColumnUtils::consumeColumnCount(range);
}

Powered by Google App Engine
This is Rietveld 408576698