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

Unified Diff: include/effects/SkMatrixImageFilter.h

Issue 1019493002: Remove uniqueID from all filter serialization. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Null out fUniqueID deserialization Created 5 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 | « include/effects/SkMatrixConvolutionImageFilter.h ('k') | include/effects/SkMergeImageFilter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/effects/SkMatrixImageFilter.h
diff --git a/include/effects/SkMatrixImageFilter.h b/include/effects/SkMatrixImageFilter.h
index d0afdc3bd91360a8aa97b82cba1b7a32e73a867b..2c11aa63a315a6240db47ac995b9edf202421bd0 100644
--- a/include/effects/SkMatrixImageFilter.h
+++ b/include/effects/SkMatrixImageFilter.h
@@ -30,14 +30,12 @@ public:
static SkMatrixImageFilter* Create(const SkMatrix& transform,
SkFilterQuality,
- SkImageFilter* input = NULL,
- uint32_t uniqueID = 0);
+ SkImageFilter* input = NULL);
#ifdef SK_SUPPORT_LEGACY_FILTERLEVEL_ENUM
static SkMatrixImageFilter* Create(const SkMatrix& transform,
SkPaint::FilterLevel level,
- SkImageFilter* input = NULL,
- uint32_t uniqueID = 0) {
- return Create(transform, SkFilterQuality(level), input, uniqueID);
+ SkImageFilter* input = NULL) {
+ return Create(transform, SkFilterQuality(level), input);
}
#endif
virtual ~SkMatrixImageFilter();
@@ -50,8 +48,7 @@ public:
protected:
SkMatrixImageFilter(const SkMatrix& transform,
SkFilterQuality,
- SkImageFilter* input,
- uint32_t uniqueID);
+ SkImageFilter* input);
void flatten(SkWriteBuffer&) const SK_OVERRIDE;
virtual bool onFilterImage(Proxy*, const SkBitmap& src, const Context&,
« no previous file with comments | « include/effects/SkMatrixConvolutionImageFilter.h ('k') | include/effects/SkMergeImageFilter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698