| Index: src/codec/SkCodec.cpp
|
| diff --git a/src/codec/SkCodec.cpp b/src/codec/SkCodec.cpp
|
| index f5a6d36e3b981a31efba661ba05447f4611c575e..0da36bb17182ad298060ee110911d6d288dd925d 100644
|
| --- a/src/codec/SkCodec.cpp
|
| +++ b/src/codec/SkCodec.cpp
|
| @@ -11,9 +11,7 @@
|
| #include "SkData.h"
|
| #include "SkGifCodec.h"
|
| #include "SkIcoCodec.h"
|
| -#if !defined(GOOGLE3)
|
| #include "SkJpegCodec.h"
|
| -#endif
|
| #include "SkPngCodec.h"
|
| #ifdef SK_CODEC_DECODES_RAW
|
| #include "SkRawCodec.h"
|
| @@ -28,9 +26,7 @@ struct DecoderProc {
|
| };
|
|
|
| static const DecoderProc gDecoderProcs[] = {
|
| -#if !defined(GOOGLE3)
|
| { SkJpegCodec::IsJpeg, SkJpegCodec::NewFromStream },
|
| -#endif
|
| { SkWebpCodec::IsWebp, SkWebpCodec::NewFromStream },
|
| { SkGifCodec::IsGif, SkGifCodec::NewFromStream },
|
| { SkIcoCodec::IsIco, SkIcoCodec::NewFromStream },
|
|
|