#include "content/renderer/accessibility/annotations/ax_image_annotator.h"
#include "base/test/scoped_feature_list.h"
#include "content/renderer/accessibility/annotations/ax_annotators_manager.h"
#include "content/renderer/accessibility/render_accessibility_impl_test.h"
#include "mojo/public/cpp/bindings/pending_remote.h"
#include "third_party/blink/public/web/web_element.h"
#include "third_party/blink/public/web/web_local_frame.h"
namespace content {
WebAXObject;
WebDocument;
ElementsAre;
class TestAXImageAnnotator : public AXImageAnnotator { … };
class MockImageAnnotationService : public image_annotation::mojom::Annotator { … };
class AXImageAnnotatorTest : public RenderAccessibilityImplTest { … };
#if BUILDFLAG(IS_FUCHSIA)
#define MAYBE_OnImageAdded …
#else
#define MAYBE_OnImageAdded …
#endif
TEST_F(AXImageAnnotatorTest, MAYBE_OnImageAdded) { … }
TEST_F(AXImageAnnotatorTest, OnImageUpdated) { … }
}