Index: src/core/SkRecorder.cpp |
diff --git a/src/core/SkRecorder.cpp b/src/core/SkRecorder.cpp |
index 0a2d43edbf22c74956bdd17b83c70ec40b686e8c..0ba293f08d57c5675d57e17b9f4fd242f4fd0919 100644 |
--- a/src/core/SkRecorder.cpp |
+++ b/src/core/SkRecorder.cpp |
@@ -5,6 +5,7 @@ |
* found in the LICENSE file. |
*/ |
+#include "SkBigPicture.h" |
#include "SkPatchUtils.h" |
#include "SkPicture.h" |
#include "SkPictureUtils.h" |
@@ -14,7 +15,7 @@ SkDrawableList::~SkDrawableList() { |
fArray.unrefAll(); |
} |
-SkPicture::SnapshotArray* SkDrawableList::newDrawableSnapshot() { |
+SkBigPicture::SnapshotArray* SkDrawableList::newDrawableSnapshot() { |
const int count = fArray.count(); |
if (0 == count) { |
return NULL; |
@@ -23,7 +24,7 @@ SkPicture::SnapshotArray* SkDrawableList::newDrawableSnapshot() { |
for (int i = 0; i < count; ++i) { |
pics[i] = fArray[i]->newPictureSnapshot(); |
} |
- return SkNEW_ARGS(SkPicture::SnapshotArray, (pics.detach(), count)); |
+ return SkNEW_ARGS(SkBigPicture::SnapshotArray, (pics.detach(), count)); |
} |
void SkDrawableList::append(SkDrawable* drawable) { |