Index: gm/imagefiltersbase.cpp |
diff --git a/gm/imagefiltersbase.cpp b/gm/imagefiltersbase.cpp |
index ca8a2d421a758342248e5d489875c6868fb64f51..ffbde50834a63968c1ce9dbfe3bb34d648451c64 100644 |
--- a/gm/imagefiltersbase.cpp |
+++ b/gm/imagefiltersbase.cpp |
@@ -22,8 +22,7 @@ public: |
public: |
Registrar() { |
SkFlattenable::Register("FailImageFilter", |
- FailImageFilter::CreateProc, |
- FailImageFilter::GetFlattenableType()); |
+ FailImageFilter::CreateProc); |
} |
}; |
static FailImageFilter* Create() { return new FailImageFilter; } |
@@ -63,8 +62,7 @@ public: |
public: |
Registrar() { |
SkFlattenable::Register("IdentityImageFilter", |
- IdentityImageFilter::CreateProc, |
- IdentityImageFilter::GetFlattenableType()); |
+ IdentityImageFilter::CreateProc); |
} |
}; |
static IdentityImageFilter* Create(SkImageFilter* input = nullptr) { |