/* * Copyright 2013 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef SkDiscardableMemory_DEFINED #define SkDiscardableMemory_DEFINED #include "include/core/SkRefCnt.h" #include "include/core/SkTypes.h" /** * Interface for discardable memory. Implementation is provided by the * embedder. */ class SK_SPI SkDiscardableMemory { … }; #endif