#include "components/user_notes/browser/user_note_utils.h"
#include "base/unguessable_token.h"
#include "components/user_notes/browser/frame_user_note_changes.h"
#include "components/user_notes/browser/user_note_manager.h"
#include "components/user_notes/browser/user_note_service.h"
#include "components/user_notes/interfaces/user_note_metadata_snapshot.h"
#include "components/user_notes/model/user_note_metadata.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/weak_document_ptr.h"
#include "url/gurl.h"
namespace user_notes {
std::vector<std::unique_ptr<FrameUserNoteChanges>> CalculateNoteChanges(
const UserNoteService& note_service,
const std::vector<content::WeakDocumentPtr>& documents,
const UserNoteMetadataSnapshot& metadata_snapshot) { … }
}