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

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, 9 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 2f053979c8cb0a08116b07b897a104c6a1494e71..3329b58cab1000aa804188b5a9456f42c14b0b04 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:
DECLARE_TRACE_AFTER_DISPATCH();
private:
- CSSBorderImageSliceValue(PassRefPtrWillBeRawPtr<CSSQuadValue> slices, bool fill);
+ CSSBorderImageSliceValue(RawPtr<CSSQuadValue> slices, bool fill);
// 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;
};
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSBorderImage.cpp ('k') | third_party/WebKit/Source/core/css/CSSBorderImageSliceValue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698