// 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_UI_VIEWS_MEDIA_PREVIEW_CAMERA_PREVIEW_CAMERA_VIEW_CONTROLLER_H_ #define CHROME_BROWSER_UI_VIEWS_MEDIA_PREVIEW_CAMERA_PREVIEW_CAMERA_VIEW_CONTROLLER_H_ #include <stddef.h> #include <memory> #include "base/memory/raw_ref.h" #include "chrome/browser/ui/views/media_preview/media_view_controller_base.h" namespace media { struct VideoCaptureDeviceInfo; } // namespace media class MediaView; namespace ui { class SimpleComboboxModel; } // namespace ui // The MediaViewController for the camera view. It sets up the camera // view, and updates it based on the data it receives from the Coordinator. Also // it notifies the coordinator of changes resulting from events on the view. class CameraViewController { … }; #endif // CHROME_BROWSER_UI_VIEWS_MEDIA_PREVIEW_CAMERA_PREVIEW_CAMERA_VIEW_CONTROLLER_H_