/* * 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 SkTraceMemoryDump_DEFINED #define SkTraceMemoryDump_DEFINED #include "include/core/SkTypes.h" class SkDiscardableMemory; /** * Interface for memory tracing. * This interface is meant to be passed as argument to the memory dump methods of Skia objects. * The implementation of this interface is provided by the embedder. */ class SK_API SkTraceMemoryDump { … }; #endif