chromium/components/continuous_search/renderer/search_result_extractor_impl.h

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

#ifndef COMPONENTS_CONTINUOUS_SEARCH_RENDERER_SEARCH_RESULT_EXTRACTOR_IMPL_H_
#define COMPONENTS_CONTINUOUS_SEARCH_RENDERER_SEARCH_RESULT_EXTRACTOR_IMPL_H_

#include <vector>

#include "components/continuous_search/common/public/mojom/continuous_search.mojom.h"
#include "content/public/renderer/render_frame.h"
#include "content/public/renderer/render_frame_observer.h"
#include "mojo/public/cpp/bindings/associated_receiver.h"
#include "mojo/public/cpp/bindings/pending_associated_receiver.h"

namespace continuous_search {

// Implementation of `mojom::SearchResultExtractor`.
class SearchResultExtractorImpl : public content::RenderFrameObserver,
                                  mojom::SearchResultExtractor {};

}  // namespace continuous_search

#endif  // COMPONENTS_CONTINUOUS_SEARCH_RENDERER_SEARCH_RESULT_EXTRACTOR_IMPL_H_