chromium/components/visited_url_ranking/internal/transformer/default_app_url_visit_aggregates_transformer.h

// Copyright 2024 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_VISITED_URL_RANKING_INTERNAL_TRANSFORMER_DEFAULT_APP_URL_VISIT_AGGREGATES_TRANSFORMER_H_
#define COMPONENTS_VISITED_URL_RANKING_INTERNAL_TRANSFORMER_DEFAULT_APP_URL_VISIT_AGGREGATES_TRANSFORMER_H_

#include <string_view>
#include <vector>

#include "base/containers/flat_set.h"
#include "base/functional/callback.h"
#include "components/visited_url_ranking/public/url_visit_aggregates_transformer.h"

namespace visited_url_ranking {

// A transformer to remove URLs if they can be opened by default apps.
class DefaultAppURLVisitAggregatesTransformer
    : public URLVisitAggregatesTransformer {};

}  // namespace visited_url_ranking

#endif  // COMPONENTS_VISITED_URL_RANKING_INTERNAL_TRANSFORMER_DEFAULT_APP_URL_VISIT_AGGREGATES_TRANSFORMER_H_