chromium/media/capture/content/smooth_event_sampler.cc

// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "media/capture/content/smooth_event_sampler.h"

#include <stdint.h>

#include <algorithm>

#include "base/trace_event/trace_event.h"

namespace media {

SmoothEventSampler::SmoothEventSampler(base::TimeDelta min_capture_period)
    :{}

void SmoothEventSampler::SetMinCapturePeriod(base::TimeDelta period) {}

void SmoothEventSampler::ConsiderPresentationEvent(base::TimeTicks event_time) {}

bool SmoothEventSampler::ShouldSample() const {}

void SmoothEventSampler::RecordSample() {}

bool SmoothEventSampler::HasUnrecordedEvent() const {}

}  // namespace media