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

Unified Diff: Source/core/css/CSSPrimitiveValue.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/CSSPageRule.h ('k') | Source/core/css/CSSReflectValue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSPrimitiveValue.h
diff --git a/Source/core/css/CSSPrimitiveValue.h b/Source/core/css/CSSPrimitiveValue.h
index cca8fc06c690f1bb13e6e3ddb1568bbe2db04ac2..c16a2ab2a71447b20f04d8b6b4be61674ad989ae 100644
--- a/Source/core/css/CSSPrimitiveValue.h
+++ b/Source/core/css/CSSPrimitiveValue.h
@@ -198,39 +198,39 @@ public:
static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> createIdentifier(CSSValueID valueID)
{
- return adoptRefCountedWillBeRefCountedGarbageCollected(new CSSPrimitiveValue(valueID));
+ return adoptRefWillBeRefCountedGarbageCollected(new CSSPrimitiveValue(valueID));
}
static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> createIdentifier(CSSPropertyID propertyID)
{
- return adoptRefCountedWillBeRefCountedGarbageCollected(new CSSPrimitiveValue(propertyID));
+ return adoptRefWillBeRefCountedGarbageCollected(new CSSPrimitiveValue(propertyID));
}
static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> createParserOperator(int parserOperator)
{
- return adoptRefCountedWillBeRefCountedGarbageCollected(new CSSPrimitiveValue(parserOperator));
+ return adoptRefWillBeRefCountedGarbageCollected(new CSSPrimitiveValue(parserOperator));
}
static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> createColor(unsigned rgbValue)
{
- return adoptRefCountedWillBeRefCountedGarbageCollected(new CSSPrimitiveValue(rgbValue));
+ return adoptRefWillBeRefCountedGarbageCollected(new CSSPrimitiveValue(rgbValue));
}
static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> create(double value, UnitTypes type)
{
- return adoptRefCountedWillBeRefCountedGarbageCollected(new CSSPrimitiveValue(value, type));
+ return adoptRefWillBeRefCountedGarbageCollected(new CSSPrimitiveValue(value, type));
}
static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> create(const String& value, UnitTypes type)
{
- return adoptRefCountedWillBeRefCountedGarbageCollected(new CSSPrimitiveValue(value, type));
+ return adoptRefWillBeRefCountedGarbageCollected(new CSSPrimitiveValue(value, type));
}
static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> create(const Length& value, float zoom)
{
- return adoptRefCountedWillBeRefCountedGarbageCollected(new CSSPrimitiveValue(value, zoom));
+ return adoptRefWillBeRefCountedGarbageCollected(new CSSPrimitiveValue(value, zoom));
}
static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> create(const LengthSize& value)
{
- return adoptRefCountedWillBeRefCountedGarbageCollected(new CSSPrimitiveValue(value));
+ return adoptRefWillBeRefCountedGarbageCollected(new CSSPrimitiveValue(value));
}
template<typename T> static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> create(T value)
{
- return adoptRefCountedWillBeRefCountedGarbageCollected(new CSSPrimitiveValue(value));
+ return adoptRefWillBeRefCountedGarbageCollected(new CSSPrimitiveValue(value));
}
// This value is used to handle quirky margins in reflow roots (body, td, and th) like WinIE.
@@ -241,7 +241,7 @@ public:
{
CSSPrimitiveValue* quirkValue = new CSSPrimitiveValue(value, type);
quirkValue->m_isQuirkValue = true;
- return adoptRefCountedWillBeRefCountedGarbageCollected(quirkValue);
+ return adoptRefWillBeRefCountedGarbageCollected(quirkValue);
}
~CSSPrimitiveValue();
« no previous file with comments | « Source/core/css/CSSPageRule.h ('k') | Source/core/css/CSSReflectValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698