Index: tests/LayerRasterizerTest.cpp |
diff --git a/tests/LayerRasterizerTest.cpp b/tests/LayerRasterizerTest.cpp |
index 4b236acd52346c8347d12d8dbdf263c3912241a3..b4edc14adc2334c1ed3496739e12cdba516ed6fb 100644 |
--- a/tests/LayerRasterizerTest.cpp |
+++ b/tests/LayerRasterizerTest.cpp |
@@ -33,7 +33,7 @@ public: |
static int GetCount() { return gCount; } |
- SK_DECLARE_NOT_FLATTENABLE_PROCS(DummyRasterizer) |
+ SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(DummyRasterizer); |
private: |
static int gCount; |
@@ -43,6 +43,10 @@ private: |
int DummyRasterizer::gCount; |
+SkFlattenable* DummyRasterizer::CreateProc(SkReadBuffer&) { |
+ return SkNEW(DummyRasterizer); |
+} |
+ |
// Check to make sure that the SkPaint in the layer has its destructor called. |
DEF_TEST(LayerRasterizer_destructor, reporter) { |
{ |