#include "chrome/browser/companion/text_finder/text_highlighter.h"
#include <string>
#include "base/metrics/histogram_functions.h"
#include "third_party/blink/public/mojom/annotation/annotation.mojom.h"
#include "ui/gfx/geometry/rect.h"
namespace companion {
namespace internal {
TextHighlighter::TextHighlighter(
const std::string& text_directive,
const mojo::Remote<blink::mojom::AnnotationAgentContainer>& agent_container)
: … { … }
TextHighlighter::~TextHighlighter() = default;
void TextHighlighter::InitializeAndBindToAnnotationAgent(
const mojo::Remote<blink::mojom::AnnotationAgentContainer>&
agent_container) { … }
void TextHighlighter::DidFinishAttachment(const gfx::Rect& rect) { … }
}
}