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

Unified Diff: Source/core/css/RGBColor.h

Issue 148523016: Move most of the [Pass]RefPtr's of CSSPrimitiveValue to our transition types. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Sync to latest change Created 6 years, 10 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
« no previous file with comments | « Source/core/css/CSSValuePool.cpp ('k') | Source/core/css/RGBColor.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/RGBColor.h
diff --git a/Source/core/css/RGBColor.h b/Source/core/css/RGBColor.h
index 5cd4697d4fb3ba9ef81dbabd7118c5a3cf5e5931..6ed676e233c8739b913d0b6dc1add8bcf19f76a5 100644
--- a/Source/core/css/RGBColor.h
+++ b/Source/core/css/RGBColor.h
@@ -38,10 +38,10 @@ namespace WebCore {
public:
static PassRefPtr<RGBColor> create(unsigned rgbColor);
- PassRefPtr<CSSPrimitiveValue> red();
- PassRefPtr<CSSPrimitiveValue> green();
- PassRefPtr<CSSPrimitiveValue> blue();
- PassRefPtr<CSSPrimitiveValue> alpha();
+ PassRefPtrWillBeRawPtr<CSSPrimitiveValue> red();
+ PassRefPtrWillBeRawPtr<CSSPrimitiveValue> green();
+ PassRefPtrWillBeRawPtr<CSSPrimitiveValue> blue();
+ PassRefPtrWillBeRawPtr<CSSPrimitiveValue> alpha();
Color color() const { return Color(m_rgbColor); }
« no previous file with comments | « Source/core/css/CSSValuePool.cpp ('k') | Source/core/css/RGBColor.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698