chromium/third_party/blink/renderer/modules/content_extraction/inner_text_agent.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 "third_party/blink/renderer/modules/content_extraction/inner_text_agent.h"

#include "third_party/blink/renderer/core/frame/local_dom_window.h"
#include "third_party/blink/renderer/core/frame/local_frame.h"
#include "third_party/blink/renderer/modules/content_extraction/inner_text_builder.h"

namespace blink {

// static
const char InnerTextAgent::kSupplementName[] =;

// static
InnerTextAgent* InnerTextAgent::From(Document& document) {}

// static
void InnerTextAgent::BindReceiver(
    LocalFrame* frame,
    mojo::PendingReceiver<mojom::blink::InnerTextAgent> receiver) {}

InnerTextAgent::InnerTextAgent(base::PassKey<InnerTextAgent>, LocalFrame& frame)
    :{}

InnerTextAgent::~InnerTextAgent() = default;

void InnerTextAgent::Bind(
    mojo::PendingReceiver<mojom::blink::InnerTextAgent> receiver) {}

void InnerTextAgent::Trace(Visitor* visitor) const {}

void InnerTextAgent::GetInnerText(mojom::blink::InnerTextParamsPtr params,
                                  GetInnerTextCallback callback) {}

}  // namespace blink