chromium/skia/ext/skia_trace_memory_dump_impl.h

// Copyright 2015 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_SKIA_TRACE_MEMORY_DUMP_IMPL_H_
#define SKIA_EXT_SKIA_TRACE_MEMORY_DUMP_IMPL_H_

#include <stdint.h>

#include <string>

#include "base/memory/raw_ptr.h"
#include "base/trace_event/memory_dump_request_args.h"
#include "third_party/skia/include/core/SkTraceMemoryDump.h"

namespace base {
namespace trace_event {
class ProcessMemoryDump;
}
}

namespace skia {

class SK_API SkiaTraceMemoryDumpImpl : public SkTraceMemoryDump {};

}  // namespace skia

#endif  // SKIA_EXT_SKIA_TRACE_MEMORY_DUMP_IMPL_H_