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

Unified Diff: third_party/WebKit/Source/core/css/properties/CSSPropertyFunctions.h

Issue 1858753003: Remove RawPtr from core/css (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/CSSPropertyFunctions.h
diff --git a/third_party/WebKit/Source/core/css/properties/CSSPropertyFunctions.h b/third_party/WebKit/Source/core/css/properties/CSSPropertyFunctions.h
index 846ef5de3843a7c6eb54bc275196a7b9f766481f..a17b2091b8f165386a0fee92ebc9c53d1ee83c45 100644
--- a/third_party/WebKit/Source/core/css/properties/CSSPropertyFunctions.h
+++ b/third_party/WebKit/Source/core/css/properties/CSSPropertyFunctions.h
@@ -25,7 +25,7 @@ public:
// Consumes and parses a single value for this property from by the token range,
// returning the corresponding CSSValue. This function does not check for the end
// of the token range. Returns nullptr if the input is invalid.
- static RawPtr<CSSValue> parseSingleValue(CSSParserTokenRange&, const CSSParserContext&);
+ static CSSValue* parseSingleValue(CSSParserTokenRange&, const CSSParserContext&);
using parseSingleValueFunction = decltype(&parseSingleValue);
};

Powered by Google App Engine
This is Rietveld 408576698