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

//
// SCBlackCameraSessionBlockDetector.h
// Snapchat
//
// Created by Derek Wang on 25/01/2018.
//
#import "SCBlackCameraReporter.h"
#import <Foundation/Foundation.h>
@interface SCBlackCameraSessionBlockDetector : NSObject
SC_INIT_AND_NEW_UNAVAILABLE
- (instancetype)initWithReporter:(SCBlackCameraReporter *)reporter;
- (void)sessionWillCallStartRunning;
- (void)sessionDidCallStartRunning;
- (void)sessionWillCommitConfiguration;
- (void)sessionDidCommitConfiguration;
@end