chromium/chrome/browser/companion/text_finder/text_highlighter.cc

// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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) {}

}  // namespace internal
}  // namespace companion