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

Unified Diff: third_party/WebKit/Source/core/css/CSSBorderImageSliceValue.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
Index: third_party/WebKit/Source/core/css/CSSBorderImageSliceValue.h
diff --git a/third_party/WebKit/Source/core/css/CSSBorderImageSliceValue.h b/third_party/WebKit/Source/core/css/CSSBorderImageSliceValue.h
index f9832ba21f679c00c2171e554a46f91e844454fb..46d1a2448dc3562174b1d4ce52502139fc163d7b 100644
--- a/third_party/WebKit/Source/core/css/CSSBorderImageSliceValue.h
+++ b/third_party/WebKit/Source/core/css/CSSBorderImageSliceValue.h
@@ -34,9 +34,9 @@ namespace blink {
class CSSBorderImageSliceValue : public CSSValue {
public:
- static PassRefPtrWillBeRawPtr<CSSBorderImageSliceValue> create(PassRefPtrWillBeRawPtr<CSSQuadValue> slices, bool fill)
+ static RawPtr<CSSBorderImageSliceValue> create(RawPtr<CSSQuadValue> slices, bool fill)
{
- return adoptRefWillBeNoop(new CSSBorderImageSliceValue(slices, fill));
+ return (new CSSBorderImageSliceValue(slices, fill));
}
String customCSSText() const;
@@ -49,11 +49,11 @@ public:
// These four values are used to make "cuts" in the border image. They can be numbers
// or percentages.
- RefPtrWillBeMember<CSSQuadValue> m_slices;
+ Member<CSSQuadValue> m_slices;
bool m_fill;
private:
- CSSBorderImageSliceValue(PassRefPtrWillBeRawPtr<CSSQuadValue> slices, bool fill);
+ CSSBorderImageSliceValue(RawPtr<CSSQuadValue> slices, bool fill);
};
DEFINE_CSS_VALUE_TYPE_CASTS(CSSBorderImageSliceValue, isBorderImageSliceValue());

Powered by Google App Engine
This is Rietveld 408576698