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

Unified Diff: third_party/WebKit/Source/core/css/cssom/NumberValue.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/cssom/NumberValue.h
diff --git a/third_party/WebKit/Source/core/css/cssom/NumberValue.h b/third_party/WebKit/Source/core/css/cssom/NumberValue.h
index 5ebdde95febcc7d64f6d4f9453e23751bd390b53..88d45ab4281227b7700f3265dd896b474e2acdf2 100644
--- a/third_party/WebKit/Source/core/css/cssom/NumberValue.h
+++ b/third_party/WebKit/Source/core/css/cssom/NumberValue.h
@@ -24,7 +24,7 @@ public:
double value() const { return m_value; }
- RawPtr<CSSValue> toCSSValue() const override
+ CSSValue* toCSSValue() const override
{
return cssValuePool().createValue(m_value, CSSPrimitiveValue::UnitType::
Number);

Powered by Google App Engine
This is Rietveld 408576698