chromium/third_party/blink/renderer/platform/scheduler/common/ukm_task_sampler.cc

// Copyright 2019 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/platform/scheduler/common/ukm_task_sampler.h"

#include "third_party/blink/renderer/platform/wtf/math_extras.h"

namespace blink {
namespace scheduler {

UkmTaskSampler::UkmTaskSampler(double thread_time_sampling_rate,
                               double ukm_task_sampling_rate)
    :{}

double UkmTaskSampler::GetConditionalSamplingProbability(bool has_thread_time) {}

bool UkmTaskSampler::ShouldRecordTaskUkm(bool has_thread_time) {}

void UkmTaskSampler::SetUkmTaskSamplingRate(double rate) {}

}  // namespace scheduler
}  // namespace blink