Index: dm/DMSrcSink.h |
diff --git a/dm/DMSrcSink.h b/dm/DMSrcSink.h |
index 5a734a6f3c854102725101543c4219b0f948b71e..b4866426f155eca14a113fa63acbf27a80995c4f 100644 |
--- a/dm/DMSrcSink.h |
+++ b/dm/DMSrcSink.h |
@@ -137,14 +137,7 @@ private: |
class AndroidCodecSrc : public Src { |
public: |
- enum Mode { |
- kFullImage_Mode, |
- // Splits the image into multiple subsets using a divisor and decodes the subsets |
- // separately. |
- kDivisor_Mode, |
- }; |
- |
- AndroidCodecSrc(Path, Mode, CodecSrc::DstColorType, SkAlphaType, int sampleSize); |
+ AndroidCodecSrc(Path, CodecSrc::DstColorType, SkAlphaType, int sampleSize); |
Error draw(SkCanvas*) const override; |
SkISize size() const override; |
@@ -153,7 +146,6 @@ public: |
bool serial() const override { return fRunSerially; } |
private: |
Path fPath; |
- Mode fMode; |
CodecSrc::DstColorType fDstColorType; |
SkAlphaType fDstAlphaType; |
int fSampleSize; |