chromium/third_party/blink/common/privacy_budget/identifiability_sample_collector.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 "third_party/blink/public/common/privacy_budget/identifiability_sample_collector.h"

#include "third_party/blink/common/privacy_budget/aggregating_sample_collector.h"
#include "third_party/blink/common/privacy_budget/identifiability_sample_collector_test_utils.h"

namespace blink {

namespace {
// Only used for testing. Not thread safe.
IdentifiabilitySampleCollector* testing_overriding_collector =;
}  // namespace

// static
IdentifiabilitySampleCollector* IdentifiabilitySampleCollector::Get() {}

IdentifiabilitySampleCollector::~IdentifiabilitySampleCollector() = default;

void SetCollectorInstanceForTesting(
    IdentifiabilitySampleCollector* new_collector) {}

void ResetCollectorInstanceStateForTesting() {}

}  // namespace blink