chromium/components/user_notes/interfaces/user_note_metadata_snapshot.cc

// 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.

#include "components/user_notes/interfaces/user_note_metadata_snapshot.h"

#include <ostream>

#include "components/user_notes/model/user_note_metadata.h"

namespace user_notes {

UserNoteMetadataSnapshot::UserNoteMetadataSnapshot() = default;

UserNoteMetadataSnapshot::UserNoteMetadataSnapshot(
    UserNoteMetadataSnapshot&& other) = default;

UserNoteMetadataSnapshot::~UserNoteMetadataSnapshot() = default;

bool UserNoteMetadataSnapshot::IsEmpty() {}

void UserNoteMetadataSnapshot::AddEntry(
    const GURL& url,
    const base::UnguessableToken& id,
    std::unique_ptr<UserNoteMetadata> metadata) {}

const UserNoteMetadataSnapshot::IdToMetadataMap*
UserNoteMetadataSnapshot::GetMapForUrl(const GURL& url) const {}

}  // namespace user_notes