// Copyright 2013 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef SKIA_EXT_SKDISCARDABLEMEMORY_CHROME_H_ #define SKIA_EXT_SKDISCARDABLEMEMORY_CHROME_H_ #include <memory> #include "third_party/skia/include/private/chromium/SkDiscardableMemory.h" namespace base { class DiscardableMemory; namespace trace_event { class MemoryAllocatorDump; class ProcessMemoryDump; } } // namespace base // This class implements the SkDiscardableMemory interface using // base::DiscardableMemory. class SK_API SkDiscardableMemoryChrome : public SkDiscardableMemory { … }; #endif // SKIA_EXT_SKDISCARDABLEMEMORY_CHROME_H_