chromium/remoting/client/audio/fake_async_audio_data_supplier.cc

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

#include "remoting/client/audio/fake_async_audio_data_supplier.h"

#include <string.h>
#include <utility>

#include "base/check_op.h"

namespace remoting {

FakeAsyncAudioDataSupplier::FakeAsyncAudioDataSupplier() = default;

FakeAsyncAudioDataSupplier::~FakeAsyncAudioDataSupplier() = default;

void FakeAsyncAudioDataSupplier::AsyncGetData(
    std::unique_ptr<GetDataRequest> request) {}

void FakeAsyncAudioDataSupplier::ClearGetDataRequests() {}

void FakeAsyncAudioDataSupplier::FulfillNextRequest() {}

void FakeAsyncAudioDataSupplier::FulfillAllRequests() {}

void FakeAsyncAudioDataSupplier::ResetFulfilledRequestsCounter() {}

}  // namespace remoting