cc: Added inline to Tile::IsReadyToDraw
[chromium-blink-merge.git] / media / video / capture / video_capture_device_dummy.cc
blob02752edc54fa4a8aef8193a1904ad1b69d454e31
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "media/video/capture/video_capture_device_dummy.h"
7 namespace media {
9 VideoCaptureDevice* VideoCaptureDevice::Create(const Name& device_name) {
10 return NULL;
13 void VideoCaptureDevice::GetDeviceNames(Names* device_names) {}
15 VideoCaptureDeviceDummy::VideoCaptureDeviceDummy() {}
17 VideoCaptureDeviceDummy::~VideoCaptureDeviceDummy() {}
19 void VideoCaptureDeviceDummy::Allocate(
20 const VideoCaptureCapability& capture_format,
21 VideoCaptureDevice::EventHandler* observer) {
24 void VideoCaptureDeviceDummy::Start() {}
26 void VideoCaptureDeviceDummy::Stop() {}
28 void VideoCaptureDeviceDummy::DeAllocate() {}
30 } // namespace media