Index: remoting/client/chromoting_client.cc |
diff --git a/remoting/client/chromoting_client.cc b/remoting/client/chromoting_client.cc |
index 4dabdd2cf30fd663e12e7901b9a1c04a7d1365f3..41b13e8de95a9c0df183818cc25ec57d5720ed1b 100644 |
--- a/remoting/client/chromoting_client.cc |
+++ b/remoting/client/chromoting_client.cc |
@@ -123,6 +123,13 @@ void ChromotingClient::ProcessVideoPacket(scoped_ptr<VideoPacket> packet, |
return; |
} |
+ // TODO(garykac) Add proper support for cursor shape packets. |
Wez
2012/05/16 00:20:04
nit: Rather than a TODO here, just create a bug an
garykac
2012/05/22 00:42:03
Done.
|
+ if (packet->flags() & VideoPacket::CURSOR_SHAPE) { |
+ // Ignore cursor shape changes for now. |
+ done.Run(); |
+ return; |
+ } |
+ |
// Add one frame to the counter. |
stats_.video_frame_rate()->Record(1); |