mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
954 B
Objective-C
39 lines
954 B
Objective-C
//
|
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import "DebugUIMessagesUtils.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface DebugUIMessagesAssetLoader : NSObject
|
|
|
|
@property (nonatomic) NSString *filename;
|
|
@property (nonatomic) NSString *mimeType;
|
|
|
|
@property (nonatomic) ActionPrepareBlock prepareBlock;
|
|
|
|
@property (nonatomic, nullable) NSString *filePath;
|
|
|
|
#pragma mark -
|
|
|
|
+ (instancetype)jpegInstance;
|
|
+ (instancetype)gifInstance;
|
|
+ (instancetype)mp3Instance;
|
|
+ (instancetype)mp4Instance;
|
|
+ (instancetype)compactPortraitPngInstance;
|
|
+ (instancetype)compactLandscapePngInstance;
|
|
+ (instancetype)tallPortraitPngInstance;
|
|
+ (instancetype)wideLandscapePngInstance;
|
|
+ (instancetype)largePngInstance;
|
|
+ (instancetype)tinyPngInstance;
|
|
+ (instancetype)tinyPdfInstance;
|
|
+ (instancetype)largePdfInstance;
|
|
+ (instancetype)missingPngInstance;
|
|
+ (instancetype)missingPdfInstance;
|
|
+ (instancetype)oversizeTextInstance;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|