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

Unified Diff: third_party/WebKit/Source/core/css/cssom/TransformValue.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/TransformValue.cpp
diff --git a/third_party/WebKit/Source/core/css/cssom/TransformValue.cpp b/third_party/WebKit/Source/core/css/cssom/TransformValue.cpp
index bcc17bd550cb53373ccf1f4cb4de6b80a6092b8e..9184695e9741acd3252c573abca92ee324f05fce 100644
--- a/third_party/WebKit/Source/core/css/cssom/TransformValue.cpp
+++ b/third_party/WebKit/Source/core/css/cssom/TransformValue.cpp
@@ -54,9 +54,9 @@ bool TransformValue::is2D() const
return true;
}
-RawPtr<CSSValue> TransformValue::toCSSValue() const
+CSSValue* TransformValue::toCSSValue() const
{
- RawPtr<CSSValueList> transformCSSValue = CSSValueList::createSpaceSeparated();
+ CSSValueList* transformCSSValue = CSSValueList::createSpaceSeparated();
for (size_t i = 0; i < m_transformComponents.size(); i++) {
transformCSSValue->append(m_transformComponents[i]->toCSSValue());
}

Powered by Google App Engine
This is Rietveld 408576698