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

Unified Diff: remoting/client/cursor_shape_stub_proxy.h

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.h
diff --git a/remoting/client/cursor_shape_stub_proxy.h b/remoting/client/cursor_shape_stub_proxy.h
new file mode 100644
index 0000000000000000000000000000000000000000..a0dd140367c9c7eb8bfa0d9a31183f624f053cff
--- /dev/null
+++ b/remoting/client/cursor_shape_stub_proxy.h
@@ -0,0 +1,38 @@
+// 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.
+
+#ifndef REMOTING_CLIENT_CURSOR_SHAPE_STUB_PROXY_H_
+#define REMOTING_CLIENT_CURSOR_SHAPE_STUB_PROXY_H_
+
+#include "base/callback.h"
Sergey Ulanov 2016/07/27 20:38:01 don't need this anymore
Yuwei 2016/07/27 21:01:36 Done.
+#include "base/macros.h"
+#include "base/memory/weak_ptr.h"
+#include "base/single_thread_task_runner.h"
+#include "remoting/protocol/cursor_shape_stub.h"
+
+namespace remoting {
+
+// A helper class to forward CursorShapeStub function calls from one thread to
+// the thread that the underlying CursorShapeStub lives.
Sergey Ulanov 2016/07/27 20:38:01 Suggest rewording s/the thread that the underlying
Yuwei 2016/07/27 21:01:36 Done.
+class CursorShapeStubProxy : public protocol::CursorShapeStub {
+ public:
+ // Function calls will be forwarded to |stub| on the thread of |task_runner|.
+ CursorShapeStubProxy(
+ base::WeakPtr<protocol::CursorShapeStub> stub,
+ scoped_refptr<base::SingleThreadTaskRunner> task_runner);
+ ~CursorShapeStubProxy() override;
+
+ // CursorShapeStub override.
+ void SetCursorShape(const protocol::CursorShapeInfo& cursor_shape) override;
+
+ private:
+ base::WeakPtr<protocol::CursorShapeStub> stub_;
+ scoped_refptr<base::SingleThreadTaskRunner> task_runner_;
+
+ DISALLOW_COPY_AND_ASSIGN(CursorShapeStubProxy);
+};
+
+} // namespace remoting
+
+#endif // REMOTING_CLIENT_CURSOR_SHAPE_STUB_PROXY_H_
« no previous file with comments | « no previous file | remoting/client/cursor_shape_stub_proxy.cc » ('j') | remoting/client/cursor_shape_stub_proxy.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698