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

Unified Diff: src/core/SkReadBuffer.h

Issue 1821533002: guard rasterizer and drawlooper setters (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: guard google3 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
« no previous file with comments | « src/core/SkPaint.cpp ('k') | src/effects/SkBlurDrawLooper.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/core/SkReadBuffer.h
diff --git a/src/core/SkReadBuffer.h b/src/core/SkReadBuffer.h
index c7ac8480eceddbeb35d5b475620a8a866dd60710..575375edede670cbb56d4dd4d63cb2d2a6775755 100644
--- a/src/core/SkReadBuffer.h
+++ b/src/core/SkReadBuffer.h
@@ -131,13 +131,17 @@ public:
return (T*) this->readFlattenable(T::GetFlattenableType());
}
SkColorFilter* readColorFilter() { return this->readFlattenable<SkColorFilter>(); }
- SkDrawLooper* readDrawLooper() { return this->readFlattenable<SkDrawLooper>(); }
+ sk_sp<SkDrawLooper> readDrawLooper() {
+ return sk_sp<SkDrawLooper>(this->readFlattenable<SkDrawLooper>());
+ }
SkImageFilter* readImageFilter() { return this->readFlattenable<SkImageFilter>(); }
SkMaskFilter* readMaskFilter() { return this->readFlattenable<SkMaskFilter>(); }
sk_sp<SkPathEffect> readPathEffect() {
return sk_sp<SkPathEffect>(this->readFlattenable<SkPathEffect>());
}
- SkRasterizer* readRasterizer() { return this->readFlattenable<SkRasterizer>(); }
+ sk_sp<SkRasterizer> readRasterizer() {
+ return sk_sp<SkRasterizer>(this->readFlattenable<SkRasterizer>());
+ }
sk_sp<SkShader> readShader() { return sk_sp<SkShader>(this->readFlattenable<SkShader>()); }
SkXfermode* readXfermode() { return this->readFlattenable<SkXfermode>(); }
« no previous file with comments | « src/core/SkPaint.cpp ('k') | src/effects/SkBlurDrawLooper.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698