chromium/components/visited_url_ranking/internal/transformer/history_url_visit_aggregates_categories_transformer.cc

// 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.

#include "components/visited_url_ranking/internal/transformer/history_url_visit_aggregates_categories_transformer.h"

#include <string>
#include <vector>

#include "base/containers/flat_set.h"
#include "base/functional/callback.h"
#include "components/history/core/browser/history_types.h"
#include "components/visited_url_ranking/public/url_visit.h"

namespace {

bool AnnotationsContainsAnyOfCategories(
    const history::VisitContentAnnotations& content_annotations,
    const base::flat_set<std::string>& categories) {}

}  // namespace

namespace visited_url_ranking {

HistoryURLVisitAggregatesCategoriesTransformer::
    HistoryURLVisitAggregatesCategoriesTransformer(
        base::flat_set<std::string> blocklisted_categories)
    :{}

HistoryURLVisitAggregatesCategoriesTransformer::
    ~HistoryURLVisitAggregatesCategoriesTransformer() = default;

void HistoryURLVisitAggregatesCategoriesTransformer::Transform(
    std::vector<URLVisitAggregate> aggregates,
    const FetchOptions& options,
    OnTransformCallback callback) {}

}  // namespace visited_url_ranking