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

Unified Diff: Source/core/css/CSSValueList.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/CSSValue.cpp ('k') | Source/core/css/CSSValueList.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSValueList.h
diff --git a/Source/core/css/CSSValueList.h b/Source/core/css/CSSValueList.h
index 2512bd0972a63616cdad9f4061f33b322003f883..c841dfc50036e61c56ddc9b0a509b6bf6bdcc80f 100644
--- a/Source/core/css/CSSValueList.h
+++ b/Source/core/css/CSSValueList.h
@@ -33,19 +33,19 @@ class CSSValueList : public CSSValue {
public:
static PassRefPtrWillBeRawPtr<CSSValueList> createCommaSeparated()
{
- return adoptRefCountedWillBeRefCountedGarbageCollected(new CSSValueList(CommaSeparator));
+ return adoptRefWillBeRefCountedGarbageCollected(new CSSValueList(CommaSeparator));
}
static PassRefPtrWillBeRawPtr<CSSValueList> createSpaceSeparated()
{
- return adoptRefCountedWillBeRefCountedGarbageCollected(new CSSValueList(SpaceSeparator));
+ return adoptRefWillBeRefCountedGarbageCollected(new CSSValueList(SpaceSeparator));
}
static PassRefPtrWillBeRawPtr<CSSValueList> createSlashSeparated()
{
- return adoptRefCountedWillBeRefCountedGarbageCollected(new CSSValueList(SlashSeparator));
+ return adoptRefWillBeRefCountedGarbageCollected(new CSSValueList(SlashSeparator));
}
static PassRefPtrWillBeRawPtr<CSSValueList> createFromParserValueList(CSSParserValueList* list)
{
- return adoptRefCountedWillBeRefCountedGarbageCollected(new CSSValueList(list));
+ return adoptRefWillBeRefCountedGarbageCollected(new CSSValueList(list));
}
size_t length() const { return m_values.size(); }
« no previous file with comments | « Source/core/css/CSSValue.cpp ('k') | Source/core/css/CSSValueList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698