// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_MEDIA_WEBRTC_THUMBNAIL_CAPTURER_H_ #define CHROME_BROWSER_MEDIA_WEBRTC_THUMBNAIL_CAPTURER_H_ #include "third_party/webrtc/modules/desktop_capture/delegated_source_list_controller.h" #include "third_party/webrtc/modules/desktop_capture/desktop_capturer.h" #include "ui/gfx/geometry/size.h" // Class that is used to produces native desktop media thumbnails. Two modes are // supported, delivering frames for a selected source on request (compatible // with webrtc::DesktopCapturer) and delivering frames for selected sources on // change. class ThumbnailCapturer { … }; #endif // CHROME_BROWSER_MEDIA_WEBRTC_THUMBNAIL_CAPTURER_H_