| Index: media/video/capture/mac/video_capture_device_qtkit_mac.h
|
| diff --git a/media/video/capture/mac/video_capture_device_qtkit_mac.h b/media/video/capture/mac/video_capture_device_qtkit_mac.h
|
| index 1ed511b54cece8d24fe06460535367da353d5857..c1af697848818c2e30902c50b8bb687f362bdb76 100644
|
| --- a/media/video/capture/mac/video_capture_device_qtkit_mac.h
|
| +++ b/media/video/capture/mac/video_capture_device_qtkit_mac.h
|
| @@ -24,7 +24,7 @@ class VideoCaptureDeviceMac;
|
| @interface VideoCaptureDeviceQTKit : NSObject<PlatformVideoCapturingMac> {
|
| @private
|
| // Settings.
|
| - int frameRate_;
|
| + float frameRate_;
|
|
|
| NSLock *lock_;
|
| media::VideoCaptureDeviceMac *frameReceiver_;
|
| @@ -58,7 +58,9 @@ class VideoCaptureDeviceMac;
|
| - (BOOL)setCaptureDevice:(NSString*)deviceId;
|
|
|
| // Configures the capture properties.
|
| -- (BOOL)setCaptureHeight:(int)height width:(int)width frameRate:(int)frameRate;
|
| +- (BOOL)setCaptureHeight:(int)height
|
| + width:(int)width
|
| + frameRate:(float)frameRate;
|
|
|
| // Start video capturing. Returns YES on sucess, NO otherwise.
|
| - (BOOL)startCapture;
|
|
|