/* * Copyright 2015 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef SkPngChunkReader_DEFINED #define SkPngChunkReader_DEFINED #include "include/core/SkRefCnt.h" #include "include/core/SkTypes.h" /** * SkPngChunkReader * * Base class for optional callbacks to retrieve meta/chunk data out of a PNG * encoded image as it is being decoded. * Used by SkCodec. */ class SkPngChunkReader : public SkRefCnt { … }; #endif // SkPngChunkReader_DEFINED