// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef REMOTING_CLIENT_AUDIO_AUDIO_PLAYER_H_ #define REMOTING_CLIENT_AUDIO_AUDIO_PLAYER_H_ #include <cstdint> #include <list> #include <memory> #include "base/synchronization/lock.h" #include "remoting/proto/audio.pb.h" #include "remoting/protocol/audio_stub.h" namespace remoting { // TODO(nicholss): Update legacy audio player to use new audio buffer code. class AudioPlayer : public protocol::AudioStub { … }; } // namespace remoting #endif // REMOTING_CLIENT_AUDIO_AUDIO_PLAYER_H_