#ifndef COMPONENTS_USER_NOTES_BROWSER_USER_NOTE_BASE_TEST_H_
#define COMPONENTS_USER_NOTES_BROWSER_USER_NOTE_BASE_TEST_H_
#include <memory>
#include <vector>
#include "base/test/scoped_feature_list.h"
#include "base/unguessable_token.h"
#include "components/user_notes/browser/user_note_manager.h"
#include "components/user_notes/browser/user_note_service.h"
#include "content/public/browser/web_contents.h"
#include "content/public/test/test_renderer_host.h"
#include "mojo/public/cpp/bindings/receiver.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "third_party/blink/public/mojom/annotation/annotation.mojom.h"
namespace user_notes {
class MockAnnotationAgentContainer
: public blink::mojom::AnnotationAgentContainer { … };
class MockAnnotationAgent : public blink::mojom::AnnotationAgent { … };
class UserNoteBaseTest : public content::RenderViewHostTestHarness { … };
}
#endif