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

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

Issue 182063004: Rename adoptRefCountedWillBeRefCountedGarbageCollected to adoptRefWillBeRefCountedGarbageCollected (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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/CSSFunctionValue.h ('k') | Source/core/css/CSSGridLineNamesValue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSGradientValue.h
diff --git a/Source/core/css/CSSGradientValue.h b/Source/core/css/CSSGradientValue.h
index 9851a0f5e45d6a060373fa6c81b3efd40a2ebd8c..9e0f351afe61186754f36453a0b9169ea0d298b1 100644
--- a/Source/core/css/CSSGradientValue.h
+++ b/Source/core/css/CSSGradientValue.h
@@ -149,7 +149,7 @@ public:
static PassRefPtrWillBeRawPtr<CSSLinearGradientValue> create(CSSGradientRepeat repeat, CSSGradientType gradientType = CSSLinearGradient)
{
- return adoptRefCountedWillBeRefCountedGarbageCollected(new CSSLinearGradientValue(repeat, gradientType));
+ return adoptRefWillBeRefCountedGarbageCollected(new CSSLinearGradientValue(repeat, gradientType));
}
void setAngle(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> val) { m_angle = val; }
@@ -161,7 +161,7 @@ public:
PassRefPtrWillBeRawPtr<CSSLinearGradientValue> clone() const
{
- return adoptRefCountedWillBeRefCountedGarbageCollected(new CSSLinearGradientValue(*this));
+ return adoptRefWillBeRefCountedGarbageCollected(new CSSLinearGradientValue(*this));
}
bool equals(const CSSLinearGradientValue&) const;
@@ -189,12 +189,12 @@ class CSSRadialGradientValue : public CSSGradientValue {
public:
static PassRefPtrWillBeRawPtr<CSSRadialGradientValue> create(CSSGradientRepeat repeat, CSSGradientType gradientType = CSSRadialGradient)
{
- return adoptRefCountedWillBeRefCountedGarbageCollected(new CSSRadialGradientValue(repeat, gradientType));
+ return adoptRefWillBeRefCountedGarbageCollected(new CSSRadialGradientValue(repeat, gradientType));
}
PassRefPtrWillBeRawPtr<CSSRadialGradientValue> clone() const
{
- return adoptRefCountedWillBeRefCountedGarbageCollected(new CSSRadialGradientValue(*this));
+ return adoptRefWillBeRefCountedGarbageCollected(new CSSRadialGradientValue(*this));
}
String customCSSText() const;
« no previous file with comments | « Source/core/css/CSSFunctionValue.h ('k') | Source/core/css/CSSGridLineNamesValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698