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

Unified Diff: third_party/WebKit/Source/core/css/CSSValuePool.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/CSSValuePool.h
diff --git a/third_party/WebKit/Source/core/css/CSSValuePool.h b/third_party/WebKit/Source/core/css/CSSValuePool.h
index 7d40d6395fb5f93710525f80876d60f8c475a11e..9490f1975fa6683b47bc2137abddffc91510b0ae 100644
--- a/third_party/WebKit/Source/core/css/CSSValuePool.h
+++ b/third_party/WebKit/Source/core/css/CSSValuePool.h
@@ -45,19 +45,19 @@ namespace blink {
class CORE_EXPORT CSSValuePool : public GarbageCollectedFinalized<CSSValuePool> {
public:
- RawPtr<CSSValueList> createFontFaceValue(const AtomicString&);
- RawPtr<CSSFontFamilyValue> createFontFamilyValue(const String&);
- RawPtr<CSSInheritedValue> createInheritedValue() { return m_inheritedValue; }
- RawPtr<CSSInitialValue> createImplicitInitialValue() { return m_implicitInitialValue; }
- RawPtr<CSSInitialValue> createExplicitInitialValue() { return m_explicitInitialValue; }
- RawPtr<CSSUnsetValue> createUnsetValue() { return m_unsetValue; }
- RawPtr<CSSPrimitiveValue> createIdentifierValue(CSSValueID identifier);
- RawPtr<CSSCustomIdentValue> createIdentifierValue(CSSPropertyID identifier);
- RawPtr<CSSColorValue> createColorValue(RGBA32 rgbValue);
- RawPtr<CSSPrimitiveValue> createValue(double value, CSSPrimitiveValue::UnitType);
- RawPtr<CSSPrimitiveValue> createValue(const Length& value, const ComputedStyle&);
- RawPtr<CSSPrimitiveValue> createValue(const Length& value, float zoom) { return CSSPrimitiveValue::create(value, zoom); }
- template<typename T> static RawPtr<CSSPrimitiveValue> createValue(T value) { return CSSPrimitiveValue::create(value); }
+ CSSValueList* createFontFaceValue(const AtomicString&);
+ CSSFontFamilyValue* createFontFamilyValue(const String&);
+ CSSInheritedValue* createInheritedValue() { return m_inheritedValue; }
+ CSSInitialValue* createImplicitInitialValue() { return m_implicitInitialValue; }
+ CSSInitialValue* createExplicitInitialValue() { return m_explicitInitialValue; }
+ CSSUnsetValue* createUnsetValue() { return m_unsetValue; }
+ CSSPrimitiveValue* createIdentifierValue(CSSValueID identifier);
+ CSSCustomIdentValue* createIdentifierValue(CSSPropertyID identifier);
+ CSSColorValue* createColorValue(RGBA32 rgbValue);
+ CSSPrimitiveValue* createValue(double value, CSSPrimitiveValue::UnitType);
+ CSSPrimitiveValue* createValue(const Length& value, const ComputedStyle&);
+ CSSPrimitiveValue* createValue(const Length& value, float zoom) { return CSSPrimitiveValue::create(value, zoom); }
+ template<typename T> static CSSPrimitiveValue* createValue(T value) { return CSSPrimitiveValue::create(value); }
DECLARE_TRACE();
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSValuePair.h ('k') | third_party/WebKit/Source/core/css/CSSValuePool.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698