#ifndef COMPONENTS_USER_NOTES_STORAGE_USER_NOTE_STORAGE_IMPL_H_
#define COMPONENTS_USER_NOTES_STORAGE_USER_NOTE_STORAGE_IMPL_H_
#include <unordered_map>
#include "base/files/file_path.h"
#include "base/functional/callback.h"
#include "base/threading/sequence_bound.h"
#include "components/user_notes/interfaces/user_note_metadata_snapshot.h"
#include "components/user_notes/interfaces/user_note_storage.h"
#include "components/user_notes/model/user_note.h"
#include "components/user_notes/storage/user_note_database.h"
#include "url/gurl.h"
#include "url/origin.h"
namespace user_notes {
class UserNoteStorageImpl : public UserNoteStorage { … };
}
#endif