diff options
Diffstat (limited to 'iPhone/CordovaLib/Classes/CDVCamera.h')
-rwxr-xr-x | iPhone/CordovaLib/Classes/CDVCamera.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/iPhone/CordovaLib/Classes/CDVCamera.h b/iPhone/CordovaLib/Classes/CDVCamera.h index 2905a8a..204d25f 100755 --- a/iPhone/CordovaLib/Classes/CDVCamera.h +++ b/iPhone/CordovaLib/Classes/CDVCamera.h @@ -22,7 +22,8 @@ enum CDVDestinationType { DestinationTypeDataUrl = 0, - DestinationTypeFileUri + DestinationTypeFileUri, + DestinationTypeNativeUri }; typedef NSUInteger CDVDestinationType; @@ -79,6 +80,7 @@ typedef NSUInteger CDVMediaType; - (void)takePicture:(CDVInvokedUrlCommand*)command; - (void)postImage:(UIImage*)anImage withFilename:(NSString*)filename toUrl:(NSURL*)url; - (void)cleanup:(CDVInvokedUrlCommand*)command; +- (void)repositionPopover:(CDVInvokedUrlCommand*)command; - (void)imagePickerController:(UIImagePickerController*)picker didFinishPickingMediaWithInfo:(NSDictionary*)info; - (void)imagePickerController:(UIImagePickerController*)picker didFinishPickingImage:(UIImage*)image editingInfo:(NSDictionary*)editingInfo; |