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

Unified Diff: remoting/host/client_connection_unittest.cc

Issue 4136010: Cleanups in the video encoding decoding code. Reenable VP8. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed arm build Created 10 years, 2 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/host/client_connection.cc ('k') | remoting/host/mock_objects.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/client_connection_unittest.cc
diff --git a/remoting/host/client_connection_unittest.cc b/remoting/host/client_connection_unittest.cc
index 240d8f479d51eee95000e5f4b6a67ccad21764ce..b5802cf65cfce691ccefc5a786cf6e5321e7c5da 100644
--- a/remoting/host/client_connection_unittest.cc
+++ b/remoting/host/client_connection_unittest.cc
@@ -46,8 +46,8 @@ class ClientConnectionTest : public testing::Test {
TEST_F(ClientConnectionTest, SendUpdateStream) {
// Then send the actual data.
- ChromotingHostMessage message;
- viewer_->SendUpdateStreamPacketMessage(message);
+ VideoPacket packet;
+ viewer_->SendVideoPacket(packet);
// And then close the connection to ClientConnection.
viewer_->Disconnect();
@@ -76,8 +76,8 @@ TEST_F(ClientConnectionTest, Close) {
message_loop_.RunAllPending();
EXPECT_TRUE(connection_->is_closed());
- ChromotingHostMessage message;
- viewer_->SendUpdateStreamPacketMessage(message);
+ VideoPacket packet;
+ viewer_->SendVideoPacket(packet);
viewer_->Disconnect();
message_loop_.RunAllPending();
« no previous file with comments | « remoting/host/client_connection.cc ('k') | remoting/host/mock_objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698