#ifndef REMOTING_HOST_HOST_WINDOW_PROXY_H_
#define REMOTING_HOST_HOST_WINDOW_PROXY_H_
#include <memory>
#include "base/memory/scoped_refptr.h"
#include "base/memory/weak_ptr.h"
#include "remoting/host/host_window.h"
namespace base {
class SingleThreadTaskRunner;
}
namespace remoting {
class HostWindowProxy : public HostWindow {
public:
HostWindowProxy(
scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner,
scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner,
std::unique_ptr<HostWindow> host_window);
HostWindowProxy(const HostWindowProxy&) = delete;
HostWindowProxy& operator=(const HostWindowProxy&) = delete;
~HostWindowProxy() override;
void Start(const base::WeakPtr<ClientSessionControl>& client_session_control)
override;
private:
class Core;
scoped_refptr<Core> core_;
};
}
#endif