// Copyright 2013 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #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 { // Takes an instance of |HostWindow| and runs it on the |ui_task_runner| thread. class HostWindowProxy : public HostWindow { … }; } // namespace remoting #endif // REMOTING_HOST_HOST_WINDOW_PROXY_H_