blob: 34a878eebba0ee246bfe56468864596c7549d953 [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,
"AndroidMediaPicker",
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;