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

Unified Diff: remoting/host/client_session.cc

Issue 92473002: Use webrtc::MouseCursorMonitor for cursor shapes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added a comment. Created 7 years, 1 month 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
Index: remoting/host/client_session.cc
diff --git a/remoting/host/client_session.cc b/remoting/host/client_session.cc
index 1a5e36b2a05c168ade68ceb55594d39f4f7e8aad..47cb315ddc84fcc0ba5ebabeaaf23bc9b47458e3 100644
--- a/remoting/host/client_session.cc
+++ b/remoting/host/client_session.cc
@@ -199,8 +199,8 @@ void ClientSession::DeliverClientMessage(
}
}
// No messages are currently supported.
- LOG(INFO) << "Unexpected message received: "
- << message.type() << ": " << message.data();
+ LOG(WARNING) << "Unexpected message received: "
+ << message.type() << ": " << message.data();
}
void ClientSession::OnConnectionAuthenticated(
@@ -272,6 +272,7 @@ void ClientSession::OnConnectionAuthenticated(
video_encode_task_runner_,
network_task_runner_,
desktop_environment_->CreateVideoCapturer(),
+ desktop_environment_->CreateMouseCursorMonitor(),
video_encoder.Pass(),
connection_->client_stub(),
&mouse_clamping_filter_);

Powered by Google App Engine
This is Rietveld 408576698