// 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_DESKTOP_RESIZER_H_ #define REMOTING_HOST_DESKTOP_RESIZER_H_ #include <list> #include <memory> #include "remoting/host/base/screen_resolution.h" #include "remoting/proto/control.pb.h" #include "third_party/webrtc/modules/desktop_capture/desktop_capture_types.h" namespace remoting { // Interface for resizing the desktop displays. These methods take an optional // |screen_id| parameter to resize an individual monitor. If |screen_id| refers // to a monitor that no longer exists, the implementation should do nothing, or // return empty data. If |screen_id| is not provided, the implementation should // operate on the single monitor if there is only one. If there are several // monitors, the implementation should fall back to the legacy (per-platform) // behavior. class DesktopResizer { … }; } // namespace remoting #endif // REMOTING_HOST_DESKTOP_RESIZER_H_