#ifndef REMOTING_CLIENT_CURSOR_SHAPE_STUB_PROXY_H_
#define REMOTING_CLIENT_CURSOR_SHAPE_STUB_PROXY_H_
#include "base/memory/weak_ptr.h"
#include "base/task/single_thread_task_runner.h"
#include "remoting/protocol/cursor_shape_stub.h"
namespace remoting {
class CursorShapeStubProxy : public protocol::CursorShapeStub {
public:
CursorShapeStubProxy(
base::WeakPtr<protocol::CursorShapeStub> stub,
scoped_refptr<base::SingleThreadTaskRunner> task_runner);
CursorShapeStubProxy(const CursorShapeStubProxy&) = delete;
CursorShapeStubProxy& operator=(const CursorShapeStubProxy&) = delete;
~CursorShapeStubProxy() override;
void SetCursorShape(const protocol::CursorShapeInfo& cursor_shape) override;
private:
base::WeakPtr<protocol::CursorShapeStub> stub_;
scoped_refptr<base::SingleThreadTaskRunner> task_runner_;
};
}
#endif