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

Unified Diff: remoting/client/callback_cursor_shape_stub.cc

Issue 2187723002: [Remoting Android] Refactor CursorShapeStubProxy from JniDisplayHandler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Minor style fix 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/callback_cursor_shape_stub.cc
diff --git a/remoting/client/callback_cursor_shape_stub.cc b/remoting/client/callback_cursor_shape_stub.cc
new file mode 100644
index 0000000000000000000000000000000000000000..b322227b8924682902c698bfe7ecb18f77651d95
--- /dev/null
+++ b/remoting/client/callback_cursor_shape_stub.cc
@@ -0,0 +1,29 @@
+// 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/callback_cursor_shape_stub.h"
+
+#include "base/bind.h"
+#include "base/location.h"
+#include "remoting/proto/control.pb.h"
+
+namespace remoting {
+
+CallbackCursorShapeStub::CallbackCursorShapeStub(
+ base::Callback<void(const protocol::CursorShapeInfo&)> callback,
+ scoped_refptr<base::SingleThreadTaskRunner> task_runner)
+ : callback_(callback), task_runner_(task_runner) {}
+
+CallbackCursorShapeStub::~CallbackCursorShapeStub() {}
+
+void CallbackCursorShapeStub::SetCursorShape(
+ const protocol::CursorShapeInfo& cursor_shape) {
+ if (task_runner_) {
Sergey Ulanov 2016/07/27 18:26:09 Do you really need to support case when task_runne
Yuwei 2016/07/27 18:37:20 It's not really being used... I'll drop it...
Yuwei 2016/07/27 19:22:27 Done. Removed.
+ task_runner_->PostTask(FROM_HERE, base::Bind(callback_, cursor_shape));
+ } else {
+ callback_.Run(cursor_shape);
+ }
+}
+
+} // namespace remoting

Powered by Google App Engine
This is Rietveld 408576698