diff --git a/RCTVideo.h b/RCTVideo.h index 7341332c..1fc82e43 100644 --- a/RCTVideo.h +++ b/RCTVideo.h @@ -1,12 +1,5 @@ #import "RCTView.h" -extern NSString *const RNVideoEventLoaded; -extern NSString *const RNVideoEventLoading; -extern NSString *const RNVideoEventProgress; -extern NSString *const RNVideoEventSeek; -extern NSString *const RNVideoEventLoadingError; -extern NSString *const RNVideoEventEnd; - @class RCTEventDispatcher; @interface RCTVideo : UIView diff --git a/RCTVideo.m b/RCTVideo.m index f0b74e25..37e09e8b 100644 --- a/RCTVideo.m +++ b/RCTVideo.m @@ -5,13 +5,6 @@ #import "UIView+React.h" #import -NSString *const RNVideoEventLoaded = @"videoLoaded"; -NSString *const RNVideoEventLoading = @"videoLoading"; -NSString *const RNVideoEventProgress = @"videoProgress"; -NSString *const RNVideoEventSeek = @"videoSeek"; -NSString *const RNVideoEventLoadingError = @"videoLoadError"; -NSString *const RNVideoEventEnd = @"videoEnd"; - static NSString *const statusKeyPath = @"status"; static NSString *const playbackLikelyToKeepUpKeyPath = @"playbackLikelyToKeepUp";