2014 snapchat source code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
429 B

  1. //
  2. // SCSnapCreationTriggers.h
  3. // Snapchat
  4. //
  5. // Created by Cheng Jiang on 4/1/18.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @interface SCSnapCreationTriggers : NSObject
  9. - (void)markSnapCreationStart;
  10. - (void)markSnapCreationPreviewAnimationFinish;
  11. - (void)markSnapCreationPreviewImageSetupFinish;
  12. - (void)markSnapCreationPreviewVideoFirstFrameRenderFinish;
  13. - (void)markSnapCreationEndWithContext:(NSString *)context;
  14. @end