chromium/third_party/blink/renderer/modules/ai/ai_metrics.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 "third_party/blink/renderer/modules/ai/ai_metrics.h"

#include <string_view>

#include "base/notreached.h"
#include "base/strings/strcat.h"

namespace blink {
namespace {

std::string_view GetAISessionTypeName(AIMetrics::AISessionType session_type) {}

}  // namespace

// static
std::string AIMetrics::GetAIAPIUsageMetricName(AISessionType session_type) {}

// static
std::string AIMetrics::GetAICapabilityAvailabilityMetricName(
    AISessionType session_type) {}

// static
std::string AIMetrics::GetAISessionRequestSizeMetricName(
    AISessionType session_type) {}

// static
std::string AIMetrics::GetAISessionResponseStatusMetricName(
    AISessionType session_type) {}

// static
std::string AIMetrics::GetAISessionResponseSizeMetricName(
    AISessionType session_type) {}

// static
std::string AIMetrics::GetAISessionResponseCallbackCountMetricName(
    AISessionType session_type) {}
}  // namespace blink