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

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

Issue 1858753003: Remove RawPtr from core/css (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 3329b58cab1000aa804188b5a9456f42c14b0b04..24ba0c9aa60af8135c3bc9faf42bb978a28abd90 100644
--- a/third_party/WebKit/Source/core/css/CSSBorderImageSliceValue.h
+++ b/third_party/WebKit/Source/core/css/CSSBorderImageSliceValue.h
@@ -34,7 +34,7 @@ namespace blink {
class CSSBorderImageSliceValue : public CSSValue {
public:
- static RawPtr<CSSBorderImageSliceValue> create(RawPtr<CSSQuadValue> slices, bool fill)
+ static CSSBorderImageSliceValue* create(CSSQuadValue* slices, bool fill)
{
return new CSSBorderImageSliceValue(slices, fill);
}
@@ -49,7 +49,7 @@ public:
DECLARE_TRACE_AFTER_DISPATCH();
private:
- CSSBorderImageSliceValue(RawPtr<CSSQuadValue> slices, bool fill);
+ CSSBorderImageSliceValue(CSSQuadValue* slices, bool fill);
// These four values are used to make "cuts" in the border image. They can be numbers
// or percentages.
« 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