| Index: webrtc/examples/objc/AppRTCDemo/ios/ARDAppDelegate.h
|
| diff --git a/webrtc/base/openssl.h b/webrtc/examples/objc/AppRTCDemo/ios/ARDAppDelegate.h
|
| similarity index 59%
|
| copy from webrtc/base/openssl.h
|
| copy to webrtc/examples/objc/AppRTCDemo/ios/ARDAppDelegate.h
|
| index 2071619d5d519b7d5b0ad278fa47e37d4b4b10ac..c73e8f2e6db0d8fe6bfd1b1a5050f70cb15fc0e9 100644
|
| --- a/webrtc/base/openssl.h
|
| +++ b/webrtc/examples/objc/AppRTCDemo/ios/ARDAppDelegate.h
|
| @@ -8,13 +8,10 @@
|
| * be found in the AUTHORS file in the root of the source tree.
|
| */
|
|
|
| -#ifndef WEBRTC_BASE_OPENSSL_H_
|
| -#define WEBRTC_BASE_OPENSSL_H_
|
| +#import <UIKit/UIKit.h>
|
|
|
| -#include <openssl/ssl.h>
|
| -
|
| -#if (OPENSSL_VERSION_NUMBER < 0x10000000L)
|
| -#error OpenSSL is older than 1.0.0, which is the minimum supported version.
|
| -#endif
|
| -
|
| -#endif // WEBRTC_BASE_OPENSSL_H_
|
| +// The main application class of the AppRTCDemo iOS app demonstrating
|
| +// interoperability between the Objective C implementation of PeerConnection
|
| +// and the apprtc.appspot.com demo webapp.
|
| +@interface ARDAppDelegate : NSObject <UIApplicationDelegate>
|
| +@end
|
|
|