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

Unified Diff: remoting/client/cursor_shape_stub_proxy.cc

Issue 2187723002: [Remoting Android] Refactor CursorShapeStubProxy from JniDisplayHandler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reviewer's Feedback Created 4 years, 5 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
Index: remoting/client/cursor_shape_stub_proxy.cc
diff --git a/remoting/client/cursor_shape_stub_proxy.cc b/remoting/client/cursor_shape_stub_proxy.cc
new file mode 100644
index 0000000000000000000000000000000000000000..2008be413adc316ac37780780fac990fe4ead77f
--- /dev/null
+++ b/remoting/client/cursor_shape_stub_proxy.cc
@@ -0,0 +1,27 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include <remoting/client/cursor_shape_stub_proxy.h>
+#include "base/bind.h"
+#include "base/location.h"
+#include "remoting/proto/control.pb.h"
+
+namespace remoting {
+
+CursorShapeStubProxy::CursorShapeStubProxy(
+ base::WeakPtr<protocol::CursorShapeStub> stub,
+ scoped_refptr<base::SingleThreadTaskRunner> task_runner)
+ : stub_(stub), task_runner_(task_runner) {}
+
+CursorShapeStubProxy::~CursorShapeStubProxy() {}
+
+void CursorShapeStubProxy::SetCursorShape(
+ const protocol::CursorShapeInfo& cursor_shape) {
+ DCHECK(task_runner_);
Sergey Ulanov 2016/07/27 20:38:01 Don't need this DCHECK. operator-> in scoped_refpt
Yuwei 2016/07/27 21:01:36 Done.
+ task_runner_->PostTask(
+ FROM_HERE, base::Bind(&protocol::CursorShapeStub::SetCursorShape, stub_,
+ cursor_shape));
+}
+
+} // namespace remoting

Powered by Google App Engine
This is Rietveld 408576698