// Copyright 2012 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_ME2ME_DESKTOP_ENVIRONMENT_H_ #define REMOTING_HOST_ME2ME_DESKTOP_ENVIRONMENT_H_ #include "base/task/single_thread_task_runner.h" #include "remoting/host/basic_desktop_environment.h" namespace remoting { class CurtainMode; class HostWindow; class LocalInputMonitor; // Same as BasicDesktopEnvironment but supports desktop resizing and X DAMAGE // notifications on Linux. class Me2MeDesktopEnvironment : public BasicDesktopEnvironment { … }; // Used to create |Me2MeDesktopEnvironment| instances. class Me2MeDesktopEnvironmentFactory : public BasicDesktopEnvironmentFactory { … }; } // namespace remoting #endif // REMOTING_HOST_ME2ME_DESKTOP_ENVIRONMENT_H_