chromium/components/profile_metrics/state.cc

// Copyright 2020 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/profile_metrics/state.h"

#include "base/metrics/histogram_functions.h"

namespace profile_metrics {

namespace {

std::string GetStateSuffix(StateSuffix suffix) {}

// Context for profile deletion.
// These values are persisted to logs. Entries should not be renumbered and
// numeric values should never be reused.
enum class DeleteProfileContext {};

}  // namespace

void LogProfileAccountType(UnconsentedPrimaryAccountType account_type,
                           StateSuffix suffix) {}

void LogProfileSyncEnabled(bool sync_enabled, StateSuffix suffix) {}

void LogProfileDaysSinceLastUse(int days_since_last_use, StateSuffix suffix) {}

void LogProfileDeletionContext(bool is_last_profile, bool no_browser_windows) {}

void LogProfileAllAccountsNames(AllAccountsNames names) {}

}  // namespace profile_metrics