blob: 9a817ccf5714f453e3e8b9e47ac2364b62339c90 [file] [log] [blame]
// 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 "content/public/browser/select_audio_output_request.h"
#include <utility>
namespace content {
SelectAudioOutputRequest::SelectAudioOutputRequest(
GlobalRenderFrameHostId render_frame_host_id,
const std::vector<AudioOutputDeviceInfo>& audio_output_devices)
: render_frame_host_id_(render_frame_host_id),
audio_output_devices_(audio_output_devices) {}
SelectAudioOutputRequest::~SelectAudioOutputRequest() = default;
} // namespace content