| Index: src/lazy/SkCachingPixelRef.h
|
| diff --git a/src/lazy/SkCachingPixelRef.h b/src/lazy/SkCachingPixelRef.h
|
| index 81092dc78e9c429a87aa8ff80f45602ddda1d78f..34544cc76c1630ab7d0812a0274ea6a0a0bad426 100644
|
| --- a/src/lazy/SkCachingPixelRef.h
|
| +++ b/src/lazy/SkCachingPixelRef.h
|
| @@ -40,7 +40,7 @@ public:
|
|
|
| protected:
|
| virtual ~SkCachingPixelRef();
|
| - virtual void* onLockPixels(SkColorTable** colorTable) SK_OVERRIDE;
|
| + virtual bool onNewLockPixels(LockRec*) SK_OVERRIDE;
|
| virtual void onUnlockPixels() SK_OVERRIDE;
|
| virtual bool onLockPixelsAreWritable() const SK_OVERRIDE { return false; }
|
|
|
| @@ -58,12 +58,12 @@ private:
|
| SkImageGenerator* const fImageGenerator;
|
| bool fErrorInDecoding;
|
| void* fScaledCacheId;
|
| - const SkImageInfo fInfo;
|
| const size_t fRowBytes;
|
|
|
| SkCachingPixelRef(SkImageGenerator* imageGenerator,
|
| const SkImageInfo& info,
|
| size_t rowBytes);
|
| +
|
| typedef SkPixelRef INHERITED;
|
| };
|
|
|
|
|