blob: 738dd698332f337169af19889347d99af0c9e287 [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ios/chrome/browser/metrics/ios_chrome_metrics_service_accessor.h"
#include <stdint.h>
#include "components/prefs/pref_service.h"
#include "ios/chrome/browser/application_context.h"
namespace {
const bool* g_metrics_consent_for_testing = nullptr;
} // namespace
// static
void IOSChromeMetricsServiceAccessor::SetMetricsAndCrashReportingForTesting(
const bool* value) {
DCHECK_NE(g_metrics_consent_for_testing == nullptr, value == nullptr)
<< "Unpaired set/reset";
g_metrics_consent_for_testing = value;
}
// static
bool IOSChromeMetricsServiceAccessor::IsMetricsAndCrashReportingEnabled() {
if (g_metrics_consent_for_testing)
return *g_metrics_consent_for_testing;
return IsMetricsReportingEnabled(GetApplicationContext()->GetLocalState());
}
// static
bool IOSChromeMetricsServiceAccessor::RegisterSyntheticFieldTrial(
const std::string& trial_name,
const std::string& group_name) {
return metrics::MetricsServiceAccessor::RegisterSyntheticFieldTrial(
GetApplicationContext()->GetMetricsService(), trial_name, group_name);
}