Commit 6197c323 authored by Elly Fong-Jones's avatar Elly Fong-Jones Committed by Commit Bot

mac newsdk: implement new ICCameraDevice methods

These are part of the 10.15 SDK but are not yet implemented or used
in this code.

Bug: 973128
Change-Id: I8b34aa764d9501323f97c9650f3e1555cfa89dd0
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1906332Reviewed-by: default avatarTommy Li <tommycli@chromium.org>
Commit-Queue: Elly Fong-Jones <ellyjones@chromium.org>
Cr-Commit-Position: refs/heads/master@{#713873}
parent 3b26aa05
...@@ -263,4 +263,36 @@ base::FilePath PathForCameraItem(ICCameraItem* item) { ...@@ -263,4 +263,36 @@ base::FilePath PathForCameraItem(ICCameraItem* item) {
NOTIMPLEMENTED(); NOTIMPLEMENTED();
} }
// Mac 10.15 SDK methods, not yet implemented (https://crbug.com/849689)
- (void)cameraDevice:(ICCameraDevice*)camera didRemoveItems:(NSArray*)items {
NOTIMPLEMENTED();
}
- (void)cameraDevice:(ICCameraDevice*)camera
didReceiveThumbnail:(CGImageRef)thumbnail
forItem:(ICCameraItem*)item
error:(NSError*)error {
NOTIMPLEMENTED();
}
- (void)cameraDevice:(ICCameraDevice*)camera
didReceiveMetadata:(NSDictionary*)metadata
forItem:(ICCameraItem*)item
error:(NSError*)error {
NOTIMPLEMENTED();
}
- (void)cameraDeviceDidEnableAccessRestriction:(ICDevice*)device {
NOTIMPLEMENTED();
}
- (void)cameraDeviceDidRemoveAccessRestriction:(ICDevice*)device {
NOTIMPLEMENTED();
}
- (void)device:(ICDevice*)device didCloseSessionWithError:(NSError*)error {
NOTIMPLEMENTED();
}
@end // ImageCaptureDevice @end // ImageCaptureDevice
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment