#ifndef COMPONENTS_USER_NOTES_BROWSER_USER_NOTE_MANAGER_H_
#define COMPONENTS_USER_NOTES_BROWSER_USER_NOTE_MANAGER_H_
#include <memory>
#include <string>
#include <unordered_map>
#include <vector>
#include "base/gtest_prod_util.h"
#include "base/memory/safe_ref.h"
#include "base/unguessable_token.h"
#include "components/user_notes/browser/user_note_instance.h"
#include "components/user_notes/browser/user_note_service.h"
#include "content/public/browser/page_user_data.h"
#include "mojo/public/cpp/bindings/remote.h"
#include "third_party/blink/public/mojom/annotation/annotation.mojom.h"
namespace content {
class Page;
class RenderFrameHost;
}
namespace user_notes {
class UserNoteManager : public content::PageUserData<UserNoteManager> { … };
}
#endif