chromium/google_apis/google_api_keys_utils.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 "google_apis/google_api_keys_utils.h"

#include "base/feature_list.h"
#include "base/features.h"
#include "base/metrics/field_trial_params.h"
#include "base/metrics/histogram_functions.h"

namespace google_apis {

namespace {

BASE_FEATURE();

const base::FeatureParam<std::string> kOverrideAPIKeyFeatureParam{};

}  // namespace

std::string GetAPIKeyOverrideViaFeature() {}

void LogAPIKeysMatchHistogram(bool api_keys_match) {}

}  // namespace google_apis