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

Unified Diff: third_party/WebKit/Source/core/css/cssom/KeywordValue.cpp

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/cssom/KeywordValue.cpp
diff --git a/third_party/WebKit/Source/core/css/cssom/KeywordValue.cpp b/third_party/WebKit/Source/core/css/cssom/KeywordValue.cpp
index d39b3191c8cbb40445829fdfec33250b1efa75fc..bb3634cbb7a420f134e94db784ec8c96e8c21521 100644
--- a/third_party/WebKit/Source/core/css/cssom/KeywordValue.cpp
+++ b/third_party/WebKit/Source/core/css/cssom/KeywordValue.cpp
@@ -32,7 +32,7 @@ CSSValueID KeywordValue::keywordValueID() const
return cssValueKeywordID(cssKeywordString);
}
-RawPtr<CSSValue> KeywordValue::toCSSValue() const
+CSSValue* KeywordValue::toCSSValue() const
{
CSSValueID keywordID = keywordValueID();
if (keywordID == CSSValueID::CSSValueInvalid) {

Powered by Google App Engine
This is Rietveld 408576698