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

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

Issue 1303173007: Oilpan: Unship Oilpan from CSSValues Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 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/CSSFontFeatureValue.h ('k') | Source/core/css/CSSGradientValue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSFunctionValue.h
diff --git a/Source/core/css/CSSFunctionValue.h b/Source/core/css/CSSFunctionValue.h
index a99f787019119e97dd364404d70678ae33bff38c..d2e59b2d24c2049cec87a412bb111148459817a3 100644
--- a/Source/core/css/CSSFunctionValue.h
+++ b/Source/core/css/CSSFunctionValue.h
@@ -12,9 +12,9 @@ namespace blink {
class CSSFunctionValue : public CSSValueList {
public:
- static PassRefPtrWillBeRawPtr<CSSFunctionValue> create(CSSValueID id)
+ static PassRefPtr<CSSFunctionValue> create(CSSValueID id)
{
- return adoptRefWillBeNoop(new CSSFunctionValue(id));
+ return adoptRef(new CSSFunctionValue(id));
}
String customCSSText() const;
@@ -22,8 +22,6 @@ public:
bool equals(const CSSFunctionValue& other) const { return m_valueID == other.m_valueID && CSSValueList::equals(other); }
CSSValueID functionType() const { return m_valueID; }
- DEFINE_INLINE_TRACE_AFTER_DISPATCH() { CSSValueList::traceAfterDispatch(visitor); }
-
private:
CSSFunctionValue(CSSValueID id)
: CSSValueList(FunctionClass, CommaSeparator)
« no previous file with comments | « Source/core/css/CSSFontFeatureValue.h ('k') | Source/core/css/CSSGradientValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698