chromium/chrome/browser/content_extraction/inner_html.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/content_extraction/inner_html.h"

#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "base/memory/ptr_util.h"
#include "base/metrics/histogram_functions.h"
#include "base/time/time.h"
#include "content/public/browser/render_frame_host.h"
#include "mojo/public/cpp/bindings/callback_helpers.h"
#include "services/service_manager/public/cpp/interface_provider.h"
#include "third_party/blink/public/mojom/content_extraction/inner_html.mojom.h"

namespace content_extraction {

namespace {

// Helper to request inner-html and run the real callback (as well as logging
// histograms).
class MojoHandler {};

}  // namespace

void GetInnerHtml(content::RenderFrameHost& host, InnerHtmlCallback callback) {}

}  // namespace content_extraction