// 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_MIC_PREVIEW_MIC_VIEW_CONTROLLER_H_ #define CHROME_BROWSER_UI_VIEWS_MEDIA_PREVIEW_MIC_PREVIEW_MIC_VIEW_CONTROLLER_H_ #include <stddef.h> #include <memory> #include <vector> #include "base/memory/raw_ref.h" #include "chrome/browser/ui/views/media_preview/media_view_controller_base.h" namespace media { struct AudioDeviceDescription; } // namespace media class MediaView; namespace ui { class SimpleComboboxModel; } // namespace ui // The MediaViewController for the mic view. It sets up the mic 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 MicViewController { … }; #endif // CHROME_BROWSER_UI_VIEWS_MEDIA_PREVIEW_MIC_PREVIEW_MIC_VIEW_CONTROLLER_H_