chromium/content/browser/find_in_page_client.h

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

#ifndef CONTENT_BROWSER_FIND_IN_PAGE_CLIENT_H_
#define CONTENT_BROWSER_FIND_IN_PAGE_CLIENT_H_

#include "base/memory/raw_ptr.h"
#include "build/build_config.h"
#include "content/common/content_export.h"
#include "mojo/public/cpp/bindings/receiver.h"
#include "third_party/blink/public/mojom/frame/find_in_page.mojom.h"

namespace content {

class RenderFrameHostImpl;
class FindRequestManager;

// Per-frame client of FindInPage, owned by FindRequestManager.
// Keeps track of the current match count for the frame.
class CONTENT_EXPORT FindInPageClient : public blink::mojom::FindInPageClient {};

}  // namespace content

#endif  // CONTENT_BROWSER_FIND_IN_PAGE_CLIENT_H_