chromium/components/user_notes/storage/user_note_storage_impl.h

// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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 {

// Implements UserNoteStorage interface by passing the database requests to
// UserNotesDatabase on the correct sequence.
class UserNoteStorageImpl : public UserNoteStorage {};
}  // namespace user_notes

#endif  // COMPONENTS_USER_NOTES_STORAGE_USER_NOTE_STORAGE_IMPL_H_