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.

23 lines
487 B

  1. //
  2. // SCBlackCameraSessionBlockDetector.h
  3. // Snapchat
  4. //
  5. // Created by Derek Wang on 25/01/2018.
  6. //
  7. #import "SCBlackCameraReporter.h"
  8. #import <Foundation/Foundation.h>
  9. @interface SCBlackCameraSessionBlockDetector : NSObject
  10. SC_INIT_AND_NEW_UNAVAILABLE
  11. - (instancetype)initWithReporter:(SCBlackCameraReporter *)reporter;
  12. - (void)sessionWillCallStartRunning;
  13. - (void)sessionDidCallStartRunning;
  14. - (void)sessionWillCommitConfiguration;
  15. - (void)sessionDidCommitConfiguration;
  16. @end