chromium/chrome/browser/ui/views/media_preview/media_view_controller_base.h

// 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_MEDIA_VIEW_CONTROLLER_BASE_H_
#define CHROME_BROWSER_UI_VIEWS_MEDIA_PREVIEW_MEDIA_VIEW_CONTROLLER_BASE_H_

#include <stddef.h>

#include <optional>
#include <string>

#include "base/callback_list.h"
#include "base/functional/callback.h"
#include "base/memory/raw_ref.h"
#include "chrome/browser/ui/views/media_preview/media_preview_metrics.h"

class MediaView;

namespace views {
class Combobox;
class Label;
}  // namespace views

namespace ui {
class ComboboxModel;
}  // namespace ui

// This class encapsulates common view logic for both camera and mic media
// views.
class MediaViewControllerBase {};

#endif  // CHROME_BROWSER_UI_VIEWS_MEDIA_PREVIEW_MEDIA_VIEW_CONTROLLER_BASE_H_