| Index: src/images/SkImageDecoder_libbmp.cpp
|
| diff --git a/src/images/SkImageDecoder_libbmp.cpp b/src/images/SkImageDecoder_libbmp.cpp
|
| index f9dd2472a0b10b7a45db6e29ae12337f2ec84db4..7b87e40039d48b582610ab271b6def44bac1da64 100644
|
| --- a/src/images/SkImageDecoder_libbmp.cpp
|
| +++ b/src/images/SkImageDecoder_libbmp.cpp
|
| @@ -12,7 +12,7 @@
|
| #include "SkImageDecoder.h"
|
| #include "SkScaledBitmapSampler.h"
|
| #include "SkStream.h"
|
| -#include "SkStreamHelpers.h"
|
| +#include "SkStreamPriv.h"
|
| #include "SkTDArray.h"
|
|
|
| class SkBMPImageDecoder : public SkImageDecoder {
|
| @@ -99,7 +99,7 @@ bool SkBMPImageDecoder::onDecode(SkStream* stream, SkBitmap* bm, Mode mode) {
|
| // Allocated space used to hold the data.
|
| SkAutoMalloc storage;
|
| // Byte length of all of the data.
|
| - const size_t length = CopyStreamToStorage(&storage, stream);
|
| + const size_t length = SkCopyStreamToStorage(&storage, stream);
|
| if (0 == length) {
|
| return 0;
|
| }
|
|
|