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

Unified Diff: remoting/host/session_manager_unittest.cc

Issue 2745006: Implement a chromoting client using X11 (Closed)
Patch Set: removed all.gyp Created 10 years, 6 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/session_manager.cc ('k') | remoting/host/simple_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/session_manager_unittest.cc
diff --git a/remoting/host/session_manager_unittest.cc b/remoting/host/session_manager_unittest.cc
index 9f4cdea97f963c58ef787bf4dd55c53d5d4bd66f..008d063518998a1c82d4fae8b75ac0e8167d0629 100644
--- a/remoting/host/session_manager_unittest.cc
+++ b/remoting/host/session_manager_unittest.cc
@@ -28,8 +28,8 @@ static uint8* kData[3] = {
reinterpret_cast<uint8*>(0x02),
reinterpret_cast<uint8*>(0x03),
};
-static const chromotocol_pb::PixelFormat kFormat =
- chromotocol_pb::PixelFormatRgb32;
+static const PixelFormat kFormat =
+ PixelFormatRgb32;
class SessionManagerTest : public testing::Test {
public:
@@ -106,7 +106,7 @@ TEST_F(SessionManagerTest, OneRecordCycle) {
.WillOnce(Return(kFormat));
// Expect the encoder be called.
- chromotocol_pb::UpdateStreamPacketHeader header;
+ UpdateStreamPacketHeader header;
scoped_refptr<media::DataBuffer> buffer = new media::DataBuffer(0);
EXPECT_CALL(*encoder_, SetSize(kWidth, kHeight));
EXPECT_CALL(*encoder_, SetPixelFormat(kFormat));
« no previous file with comments | « remoting/host/session_manager.cc ('k') | remoting/host/simple_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698