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

Unified Diff: Source/core/css/CSSFontFeatureValue.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/CSSFontFaceSrcValue.h ('k') | Source/core/css/CSSFunctionValue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSFontFeatureValue.h
diff --git a/Source/core/css/CSSFontFeatureValue.h b/Source/core/css/CSSFontFeatureValue.h
index 719cab61ab4aea789b5ac7e30eb7e28cb3667d11..3dacd5bf371396f217319f7e6955a848a0c5224f 100644
--- a/Source/core/css/CSSFontFeatureValue.h
+++ b/Source/core/css/CSSFontFeatureValue.h
@@ -33,9 +33,9 @@ namespace blink {
class CSSFontFeatureValue : public CSSValue {
public:
- static PassRefPtrWillBeRawPtr<CSSFontFeatureValue> create(const AtomicString& tag, int value)
+ static PassRefPtr<CSSFontFeatureValue> create(const AtomicString& tag, int value)
{
- return adoptRefWillBeNoop(new CSSFontFeatureValue(tag, value));
+ return adoptRef(new CSSFontFeatureValue(tag, value));
}
const AtomicString& tag() const { return m_tag; }
@@ -44,8 +44,6 @@ public:
bool equals(const CSSFontFeatureValue&) const;
- DEFINE_INLINE_TRACE_AFTER_DISPATCH() { CSSValue::traceAfterDispatch(visitor); }
-
private:
CSSFontFeatureValue(const AtomicString& tag, int value);
« no previous file with comments | « Source/core/css/CSSFontFaceSrcValue.h ('k') | Source/core/css/CSSFunctionValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698