Make fps NSInteger in startCaptureWithDevice.

This is better in line with Obj-C design guidelines.

BUG=None

Review-Url: https://codereview.webrtc.org/2862493003
Cr-Commit-Position: refs/heads/master@{#18023}
This commit is contained in:
sakal
2017-05-05 00:45:30 -07:00
committed by Commit bot
parent 5825288a98
commit ea12f4c5e8
3 changed files with 6 additions and 6 deletions

View File

@ -31,7 +31,7 @@ RTC_EXPORT
// Starts and stops the capture session asynchronously.
- (void)startCaptureWithDevice:(AVCaptureDevice *)device
format:(AVCaptureDeviceFormat *)format
fps:(int)fps;
fps:(NSInteger)fps;
// Stops the capture session asynchronously.
- (void)stopCapture;