blob: 417e534121c42933ab60c8267f4a742af9bb21b5 [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef REMOTING_PROTOCOL_VIDEO_FEEDBACK_STUB_H_
#define REMOTING_PROTOCOL_VIDEO_FEEDBACK_STUB_H_
#include <memory>
namespace remoting {
class VideoAck;
namespace protocol {
class VideoFeedbackStub {
public:
VideoFeedbackStub(const VideoFeedbackStub&) = delete;
VideoFeedbackStub& operator=(const VideoFeedbackStub&) = delete;
virtual void ProcessVideoAck(std::unique_ptr<VideoAck> video_ack) = 0;
protected:
VideoFeedbackStub() {}
virtual ~VideoFeedbackStub() {}
};
} // namespace protocol
} // namespace remoting
#endif // REMOTING_PROTOCOL_VIDEO_FEEDBACK_STUB_H_