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

Unified Diff: Source/core/css/CSSUnicodeRangeValue.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/CSSTimingFunctionValue.h ('k') | Source/core/css/CSSUnsetValue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSUnicodeRangeValue.h
diff --git a/Source/core/css/CSSUnicodeRangeValue.h b/Source/core/css/CSSUnicodeRangeValue.h
index eabe25fdffc9dd8bee8443660800156fd5df61d6..8f9aa14eba5cd1c94e96c768d0238e294a7d456d 100644
--- a/Source/core/css/CSSUnicodeRangeValue.h
+++ b/Source/core/css/CSSUnicodeRangeValue.h
@@ -33,9 +33,9 @@ namespace blink {
class CSSUnicodeRangeValue : public CSSValue {
public:
- static PassRefPtrWillBeRawPtr<CSSUnicodeRangeValue> create(UChar32 from, UChar32 to)
+ static PassRefPtr<CSSUnicodeRangeValue> create(UChar32 from, UChar32 to)
{
- return adoptRefWillBeNoop(new CSSUnicodeRangeValue(from, to));
+ return adoptRef(new CSSUnicodeRangeValue(from, to));
}
UChar32 from() const { return m_from; }
@@ -45,8 +45,6 @@ public:
bool equals(const CSSUnicodeRangeValue&) const;
- DEFINE_INLINE_TRACE_AFTER_DISPATCH() { CSSValue::traceAfterDispatch(visitor); }
-
private:
CSSUnicodeRangeValue(UChar32 from, UChar32 to)
: CSSValue(UnicodeRangeClass)
« no previous file with comments | « Source/core/css/CSSTimingFunctionValue.h ('k') | Source/core/css/CSSUnsetValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698