blob: 176044a145e51469908939758bee5606cf154748 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/public/browser/video_capture_device_launcher.h"
#include "content/browser/renderer_host/media/in_process_video_capture_device_launcher.h"
namespace content {
// static
std::unique_ptr<VideoCaptureDeviceLauncher>
VideoCaptureDeviceLauncher::CreateInProcessVideoCaptureDeviceLauncher(
scoped_refptr<base::SingleThreadTaskRunner> device_task_runner) {
return std::make_unique<InProcessVideoCaptureDeviceLauncher>(
device_task_runner, nullptr);
}
} // namespace content