// 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 SQL_DATABASE_MEMORY_DUMP_PROVIDER_H_ #define SQL_DATABASE_MEMORY_DUMP_PROVIDER_H_ #include <string> #include "base/memory/raw_ptr.h" #include "base/synchronization/lock.h" #include "base/thread_annotations.h" #include "base/trace_event/memory_dump_provider.h" struct sqlite3; namespace base::trace_event { struct MemoryDumpArgs; class ProcessMemoryDump; } // namespace base::trace_event namespace sql { class DatabaseMemoryDumpProvider : public base::trace_event::MemoryDumpProvider { … }; } // namespace sql #endif // SQL_DATABASE_MEMORY_DUMP_PROVIDER_H_