#ifndef REMOTING_PROTOCOL_AUDIO_DECODE_SCHEDULER_H_
#define REMOTING_PROTOCOL_AUDIO_DECODE_SCHEDULER_H_
#include <memory>
#include "base/memory/scoped_refptr.h"
#include "base/memory/weak_ptr.h"
#include "base/threading/thread_checker.h"
#include "remoting/protocol/audio_stub.h"
namespace base {
class SingleThreadTaskRunner;
}
namespace remoting {
class AudioDecoder;
class AudioPacket;
namespace protocol {
class SessionConfig;
class AudioStub;
class AudioDecodeScheduler : public AudioStub { … };
}
}
#endif