Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(422)

Unified Diff: remoting/protocol/protocol_mock_objects.h

Issue 850983002: Implement video frame acknowledgements in the chromoting protocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/protocol/host_video_dispatcher.cc ('k') | remoting/protocol/protocol_mock_objects.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/protocol_mock_objects.h
diff --git a/remoting/protocol/protocol_mock_objects.h b/remoting/protocol/protocol_mock_objects.h
index b0ff4f2626538b49c4cc55e64cd7e9778b5e39cd..3ee6a1a6091b83830a2117062e160255af60d259 100644
--- a/remoting/protocol/protocol_mock_objects.h
+++ b/remoting/protocol/protocol_mock_objects.h
@@ -50,14 +50,21 @@ class MockConnectionToClient : public ConnectionToClient {
input_stub_ = input_stub;
}
+ void set_video_feedback_stub(
+ VideoFeedbackStub* video_feedback_stub) override {
+ video_feedback_stub_ = video_feedback_stub;
+ }
+
ClipboardStub* clipboard_stub() { return clipboard_stub_; }
HostStub* host_stub() { return host_stub_; }
InputStub* input_stub() { return input_stub_; }
+ VideoFeedbackStub* video_feedback_stub() { return video_feedback_stub_; }
private:
ClipboardStub* clipboard_stub_;
HostStub* host_stub_;
InputStub* input_stub_;
+ VideoFeedbackStub* video_feedback_stub_;
DISALLOW_COPY_AND_ASSIGN(MockConnectionToClient);
};
« no previous file with comments | « remoting/protocol/host_video_dispatcher.cc ('k') | remoting/protocol/protocol_mock_objects.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698