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

Unified Diff: Source/core/css/CSSBorderImageSliceValue.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/CSSBorderImage.cpp ('k') | Source/core/css/CSSBorderImageSliceValue.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSBorderImageSliceValue.h
diff --git a/Source/core/css/CSSBorderImageSliceValue.h b/Source/core/css/CSSBorderImageSliceValue.h
index a4df48550befb9b18061a78d0bb29a8a05b66980..0db6869ffe053ec3363384367380e63f860b7195 100644
--- a/Source/core/css/CSSBorderImageSliceValue.h
+++ b/Source/core/css/CSSBorderImageSliceValue.h
@@ -34,9 +34,9 @@ namespace blink {
class CSSBorderImageSliceValue : public CSSValue {
public:
- static PassRefPtrWillBeRawPtr<CSSBorderImageSliceValue> create(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> slices, bool fill)
+ static PassRefPtr<CSSBorderImageSliceValue> create(PassRefPtr<CSSPrimitiveValue> slices, bool fill)
{
- return adoptRefWillBeNoop(new CSSBorderImageSliceValue(slices, fill));
+ return adoptRef(new CSSBorderImageSliceValue(slices, fill));
}
String customCSSText() const;
@@ -45,15 +45,13 @@ public:
bool equals(const CSSBorderImageSliceValue&) const;
- DECLARE_TRACE_AFTER_DISPATCH();
-
// These four values are used to make "cuts" in the border image. They can be numbers
// or percentages.
- RefPtrWillBeMember<CSSPrimitiveValue> m_slices;
+ RefPtr<CSSPrimitiveValue> m_slices;
bool m_fill;
private:
- CSSBorderImageSliceValue(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> slices, bool fill);
+ CSSBorderImageSliceValue(PassRefPtr<CSSPrimitiveValue> slices, bool fill);
};
DEFINE_CSS_VALUE_TYPE_CASTS(CSSBorderImageSliceValue, isBorderImageSliceValue());
« no previous file with comments | « Source/core/css/CSSBorderImage.cpp ('k') | Source/core/css/CSSBorderImageSliceValue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698