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

Side by Side Diff: device/capture/video/mac/video_capture_device_mac.mm

Issue 2143903003: [WIP] Move media/capture to device/capture (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "media/capture/video/mac/video_capture_device_mac.h" 5 #include "device/capture/video/mac/video_capture_device_mac.h"
6 6
7 #include <IOKit/IOCFPlugIn.h> 7 #include <IOKit/IOCFPlugIn.h>
8 #include <IOKit/usb/IOUSBLib.h> 8 #include <IOKit/usb/IOUSBLib.h>
9 #include <IOKit/usb/USBSpec.h> 9 #include <IOKit/usb/USBSpec.h>
10 #include <stddef.h> 10 #include <stddef.h>
11 #include <stdint.h> 11 #include <stdint.h>
12 12
13 #include <limits> 13 #include <limits>
14 #include <utility> 14 #include <utility>
15 15
16 #include "base/bind.h" 16 #include "base/bind.h"
17 #include "base/location.h" 17 #include "base/location.h"
18 #include "base/logging.h" 18 #include "base/logging.h"
19 #include "base/mac/scoped_ioobject.h" 19 #include "base/mac/scoped_ioobject.h"
20 #include "base/mac/scoped_ioplugininterface.h" 20 #include "base/mac/scoped_ioplugininterface.h"
21 #include "base/macros.h" 21 #include "base/macros.h"
22 #include "base/single_thread_task_runner.h" 22 #include "base/single_thread_task_runner.h"
23 #include "base/strings/string_number_conversions.h" 23 #include "base/strings/string_number_conversions.h"
24 #include "base/threading/thread_task_runner_handle.h" 24 #include "base/threading/thread_task_runner_handle.h"
25 #include "base/time/time.h" 25 #include "base/time/time.h"
26 #import "device/capture/video/mac/video_capture_device_avfoundation_mac.h"
26 #import "media/base/mac/avfoundation_glue.h" 27 #import "media/base/mac/avfoundation_glue.h"
27 #include "media/base/timestamp_constants.h" 28 #include "media/base/timestamp_constants.h"
28 #import "media/capture/video/mac/video_capture_device_avfoundation_mac.h"
29 #include "ui/gfx/geometry/size.h" 29 #include "ui/gfx/geometry/size.h"
30 30
31 @implementation DeviceNameAndTransportType 31 @implementation DeviceNameAndTransportType
32 32
33 - (id)initWithName:(NSString*)deviceName transportType:(int32_t)transportType { 33 - (id)initWithName:(NSString*)deviceName transportType:(int32_t)transportType {
34 if (self = [super init]) { 34 if (self = [super init]) {
35 deviceName_.reset([deviceName copy]); 35 deviceName_.reset([deviceName copy]);
36 transportType_ = transportType; 36 transportType_ = transportType;
37 } 37 }
38 return self; 38 return self;
(...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after
481 if (![capture_device_ setCaptureHeight:capture_format_.frame_size.height() 481 if (![capture_device_ setCaptureHeight:capture_format_.frame_size.height()
482 width:capture_format_.frame_size.width() 482 width:capture_format_.frame_size.width()
483 frameRate:capture_format_.frame_rate]) { 483 frameRate:capture_format_.frame_rate]) {
484 ReceiveError(FROM_HERE, "Could not configure capture device."); 484 ReceiveError(FROM_HERE, "Could not configure capture device.");
485 return false; 485 return false;
486 } 486 }
487 return true; 487 return true;
488 } 488 }
489 489
490 } // namespace media 490 } // namespace media
OLDNEW
« no previous file with comments | « device/capture/video/mac/video_capture_device_mac.h ('k') | device/capture/video/scoped_result_callback.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698