chromium/chrome/browser/ui/views/desktop_capture/desktop_media_content_pane_view.cc

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/ui/views/desktop_capture/desktop_media_content_pane_view.h"

#include "ui/base/metadata/metadata_impl_macros.h"
#include "ui/base/ui_base_features.h"
#include "ui/compositor/layer.h"
#include "ui/views/background.h"
#include "ui/views/controls/scroll_view.h"
#include "ui/views/controls/separator.h"
#include "ui/views/layout/box_layout.h"

DesktopMediaContentPaneView::DesktopMediaContentPaneView(
    std::unique_ptr<views::View> content_view,
    std::unique_ptr<ShareAudioView> share_audio_view) {}

DesktopMediaContentPaneView::~DesktopMediaContentPaneView() = default;

bool DesktopMediaContentPaneView::AudioOffered() const {}

bool DesktopMediaContentPaneView::IsAudioSharingApprovedByUser() const {}

void DesktopMediaContentPaneView::SetAudioSharingApprovedByUser(bool is_on) {}

std::u16string DesktopMediaContentPaneView::GetAudioLabelText() const {}

BEGIN_METADATA()