| Index: src/images/SkImageDecoder_libico.cpp
|
| diff --git a/src/images/SkImageDecoder_libico.cpp b/src/images/SkImageDecoder_libico.cpp
|
| index e6ae16f0bd4c2cc73b79e4df94883412d85733c0..d415d2be6ddb93de0bb60db60262f4cdd5bd13d7 100644
|
| --- a/src/images/SkImageDecoder_libico.cpp
|
| +++ b/src/images/SkImageDecoder_libico.cpp
|
| @@ -8,7 +8,7 @@
|
| #include "SkColorPriv.h"
|
| #include "SkImageDecoder.h"
|
| #include "SkStream.h"
|
| -#include "SkStreamHelpers.h"
|
| +#include "SkStreamPriv.h"
|
| #include "SkTypes.h"
|
|
|
| class SkICOImageDecoder : public SkImageDecoder {
|
| @@ -75,7 +75,7 @@ static int calculateRowBytesFor8888(int w, int bitCount)
|
| bool SkICOImageDecoder::onDecode(SkStream* stream, SkBitmap* bm, Mode mode)
|
| {
|
| SkAutoMalloc autoMal;
|
| - const size_t length = CopyStreamToStorage(&autoMal, stream);
|
| + const size_t length = SkCopyStreamToStorage(&autoMal, stream);
|
| if (0 == length) {
|
| return false;
|
| }
|
|
|