Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(95)

Side by Side Diff: media/video/capture/mac/video_capture_device_factory_mac_unittest.mm

Issue 276993002: Revert 269271 "Mac Video Capture Device: split VCD into VCD and ..." (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1984/src/
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2014 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.
4
5 #include "base/command_line.h"
6 #include "media/base/media_switches.h"
7 #import "media/video/capture/mac/avfoundation_glue.h"
8 #include "media/video/capture/mac/video_capture_device_factory_mac.h"
9 #include "media/video/capture/mac/video_capture_device_mac.h"
10 #include "testing/gtest/include/gtest/gtest.h"
11
12 namespace media {
13
14 class VideoCaptureDeviceFactoryMacTest : public testing::Test {
15 virtual void SetUp() {
16 CommandLine::ForCurrentProcess()->AppendSwitch(
17 switches::kEnableAVFoundation);
18 }
19 };
20
21 TEST_F(VideoCaptureDeviceFactoryMacTest, ListDevicesAVFoundation) {
22 if (!AVFoundationGlue::IsAVFoundationSupported()) {
23 DVLOG(1) << "AVFoundation not supported, skipping test.";
24 return;
25 }
26 VideoCaptureDeviceFactoryMac video_capture_device_factory;
27
28 VideoCaptureDevice::Names names;
29 video_capture_device_factory.GetDeviceNames(&names);
30 if (!names.size()) {
31 DVLOG(1) << "No camera available. Exiting test.";
32 return;
33 }
34 // There should be no blacklisted devices, i.e. QTKit.
35 std::string device_vid;
36 for (VideoCaptureDevice::Names::const_iterator it = names.begin();
37 it != names.end(); ++it) {
38 EXPECT_EQ(it->capture_api_type(), VideoCaptureDevice::Name::AVFOUNDATION);
39 }
40 }
41
42 }; // namespace media
OLDNEW
« no previous file with comments | « media/video/capture/mac/video_capture_device_factory_mac.mm ('k') | media/video/capture/mac/video_capture_device_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698