summaryrefslogtreecommitdiffstats
path: root/content/browser/media/media_devices_monitor.cc
blob: 9f2c18353f186d31b28010fd2ee40e498fa90336 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright 2013 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/media_devices_monitor.h"

#include "content/browser/browser_main_loop.h"
#include "content/browser/renderer_host/media/media_stream_manager.h"
#include "content/public/browser/browser_thread.h"

namespace content {
namespace {
void EnsureMonitorCaptureDevicesInternal(
    MediaStreamManager* media_stream_manager) {
  media_stream_manager->EnsureDeviceMonitorStarted();
}
}

void EnsureMonitorCaptureDevices() {
  DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));

  BrowserThread::PostTask(
      BrowserThread::IO, FROM_HERE,
      base::Bind(&EnsureMonitorCaptureDevicesInternal,
                 BrowserMainLoop::GetInstance()->media_stream_manager()));
}

}  // namespace content