chromium/chrome/browser/new_tab_page/modules/test_support.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 "chrome/browser/new_tab_page/modules/test_support.h"

#include <string>
#include <vector>

#include "base/containers/contains.h"
#include "base/test/scoped_feature_list.h"

namespace ntp {

MockHistoryService::MockHistoryService() = default;

MockHistoryService::~MockHistoryService() = default;

const std::vector<base::test::FeatureRef>& kAllModuleFeatures =;

std::vector<base::test::FeatureRef> ComputeDisabledFeaturesList(
    const std::vector<base::test::FeatureRef>& features,
    const std::vector<base::test::FeatureRef>& enabled_features) {}

}  // namespace ntp