blob: b7fc00ce4249668a8f65f3ddaa0f21e7b20beefa [file] [log] [blame]
// Copyright 2018 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/media/webrtc/desktop_media_picker.h"
#if BUILDFLAG(IS_ANDROID)
BASE_FEATURE(kAndroidMediaPicker, base::FEATURE_DISABLED_BY_DEFAULT);
#endif
DesktopMediaPicker::Params::Params(RequestSource request_source)
: request_source(request_source) {}
DesktopMediaPicker::Params::Params()
: DesktopMediaPicker::Params(RequestSource::kUnknown) {}
DesktopMediaPicker::Params::Params(const Params&) = default;
DesktopMediaPicker::Params& DesktopMediaPicker::Params::operator=(
const Params&) = default;
DesktopMediaPicker::Params::~Params() = default;