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

Unified Diff: remoting/client/ui/renderer_proxy.cc

Issue 2891603002: [CRD iOS] Trackpad Input Mode (Closed)
Patch Set: Fix Created 3 years, 7 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/client/ui/input_strategy.h ('k') | remoting/client/ui/trackpad_input_strategy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/ui/renderer_proxy.cc
diff --git a/remoting/client/ui/renderer_proxy.cc b/remoting/client/ui/renderer_proxy.cc
index 4b6a568da912373535ea42e48fb98ea89559e0f9..0c82a81352eecb732587dca185b5e39e1cc34582 100644
--- a/remoting/client/ui/renderer_proxy.cc
+++ b/remoting/client/ui/renderer_proxy.cc
@@ -37,9 +37,10 @@ void RendererProxy::SetCursorPosition(float x, float y) {
}
void RendererProxy::SetCursorVisibility(bool visible) {
+ // Cursor visibility and position should be synchronized.
RunTaskOnProperThread(
base::Bind(&GlRenderer::OnCursorVisibilityChanged, renderer_, visible),
- false);
+ true);
}
void RendererProxy::StartInputFeedback(float x, float y, float diameter) {
« no previous file with comments | « remoting/client/ui/input_strategy.h ('k') | remoting/client/ui/trackpad_input_strategy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698