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

Unified Diff: remoting/host/mock_objects.h

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/event_executor_win.cc ('k') | remoting/host/session_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/mock_objects.h
diff --git a/remoting/host/mock_objects.h b/remoting/host/mock_objects.h
index 1f33263d51b9c82816f73dc42911a80c23f0c28f..d49237661f96526a5541647c6f7941c809e9c81c 100644
--- a/remoting/host/mock_objects.h
+++ b/remoting/host/mock_objects.h
@@ -27,7 +27,7 @@ class MockCapturer : public Capturer {
MOCK_CONST_METHOD1(GetDirtyRects, void(DirtyRects* rects));
MOCK_CONST_METHOD0(GetWidth, int());
MOCK_CONST_METHOD0(GetHeight, int());
- MOCK_CONST_METHOD0(GetPixelFormat, chromotocol_pb::PixelFormat());
+ MOCK_CONST_METHOD0(GetPixelFormat, PixelFormat());
private:
DISALLOW_COPY_AND_ASSIGN(MockCapturer);
@@ -42,12 +42,12 @@ class MockEncoder : public Encoder {
const uint8** planes,
const int* strides,
bool key_frame,
- chromotocol_pb::UpdateStreamPacketHeader* output_data_header,
+ UpdateStreamPacketHeader* output_data_header,
scoped_refptr<media::DataBuffer>* output_data,
bool* encode_done,
Task* data_available_task));
MOCK_METHOD2(SetSize, void(int width, int height));
- MOCK_METHOD1(SetPixelFormat, void(chromotocol_pb::PixelFormat pixel_format));
+ MOCK_METHOD1(SetPixelFormat, void(PixelFormat pixel_format));
private:
DISALLOW_COPY_AND_ASSIGN(MockEncoder);
@@ -70,7 +70,7 @@ class MockClientConnection : public ClientConnection {
MOCK_METHOD2(SendInitClientMessage, void(int width, int height));
MOCK_METHOD0(SendBeginUpdateStreamMessage, void());
MOCK_METHOD2(SendUpdateStreamPacketMessage,
- void(chromotocol_pb::UpdateStreamPacketHeader* header,
+ void(UpdateStreamPacketHeader* header,
scoped_refptr<media::DataBuffer> data));
MOCK_METHOD0(SendEndUpdateStreamMessage, void());
MOCK_METHOD0(GetPendingUpdateStreamMessages, int());
« no previous file with comments | « remoting/host/event_executor_win.cc ('k') | remoting/host/session_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698