// Copyright 2021 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_DISPLAY_INFO_LOADER_H_ #define REMOTING_HOST_DESKTOP_DISPLAY_INFO_LOADER_H_ #include <memory> #include "remoting/host/desktop_display_info.h" namespace remoting { // Interface for retrieving the current display info from the OS. All methods // should be called on the UI thread, though the instance may be constructed on // another thread. class DesktopDisplayInfoLoader { … }; } // namespace remoting #endif // REMOTING_HOST_DESKTOP_DISPLAY_INFO_LOADER_H_