You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by st...@apache.org on 2013/06/22 03:08:40 UTC

git commit: updated for ios

Updated Branches:
  refs/heads/master 8ee164ed1 -> ce5b9edc5


updated for ios


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-media-capture/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-media-capture/commit/ce5b9edc
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-media-capture/tree/ce5b9edc
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-media-capture/diff/ce5b9edc

Branch: refs/heads/master
Commit: ce5b9edc501da65894c435bfba1c1ecb99425474
Parents: 8ee164e
Author: Steven Gill <st...@gmail.com>
Authored: Fri Jun 21 18:08:36 2013 -0700
Committer: Steven Gill <st...@gmail.com>
Committed: Fri Jun 21 18:08:36 2013 -0700

----------------------------------------------------------------------
 plugin.xml           | 3 ---
 src/ios/CDVCapture.h | 2 +-
 src/ios/CDVCapture.m | 4 ++--
 3 files changed, 3 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-media-capture/blob/ce5b9edc/plugin.xml
----------------------------------------------------------------------
diff --git a/plugin.xml b/plugin.xml
index 370accb..ca6a125 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -59,9 +59,6 @@ id="org.apache.cordova.core.Capture" version="0.1.0">
                 <param name="ios-package" value="CDVCapture" /> 
             </feature>
         </config-file>
-        <header-file src="src/ios/CDVAvailability.h" />
-        <header-file src="src/ios/CDVFile.h" />
-        <header-file src="src/ios/CDVJSON.h" />
         <header-file src="src/ios/CDVCapture.h" />
         <source-file src="src/ios/CDVCapture.m" />
     </platform>

http://git-wip-us.apache.org/repos/asf/cordova-plugin-media-capture/blob/ce5b9edc/src/ios/CDVCapture.h
----------------------------------------------------------------------
diff --git a/src/ios/CDVCapture.h b/src/ios/CDVCapture.h
index afb82b4..2cd8db8 100644
--- a/src/ios/CDVCapture.h
+++ b/src/ios/CDVCapture.h
@@ -20,7 +20,7 @@
 #import <Foundation/Foundation.h>
 #import <MobileCoreServices/MobileCoreServices.h>
 #import <AVFoundation/AVFoundation.h>
-#import "CDVPlugin.h"
+#import <Cordova/CDVPlugin.h>
 #import "CDVFile.h"
 
 enum CDVCaptureError {

http://git-wip-us.apache.org/repos/asf/cordova-plugin-media-capture/blob/ce5b9edc/src/ios/CDVCapture.m
----------------------------------------------------------------------
diff --git a/src/ios/CDVCapture.m b/src/ios/CDVCapture.m
index 6b7ed44..54301e9 100644
--- a/src/ios/CDVCapture.m
+++ b/src/ios/CDVCapture.m
@@ -18,8 +18,8 @@
  */
 
 #import "CDVCapture.h"
-#import "CDVJSON.h"
-#import "CDVAvailability.h"
+#import <Cordova/CDVJSON.h>
+#import <Cordova/CDVAvailability.h>
 
 #define kW3CMediaFormatHeight @"height"
 #define kW3CMediaFormatWidth @"width"