mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
e37708dfb6
Summary: When shouldEnableLoggingForRequestUrl is false, ImageTelemetry is not initialized, and no logging is done. * Replace `- (NSString *)loaderModuleNameForRequestUrl:(NSURL *)url` with `- (BOOL)shouldEnableLoggingForRequestUrl:(NSURL *)url` * Rename RCTImageLoaderInstrumentableProtocol.h -> RCTImageLoaderLoggableProtocol.h Reviewed By: fkgozali Differential Revision: D24523984 fbshipit-source-id: a5463eceea1c40f9452b0ad2ee6bf047f71a02c1
31 lines
768 B
Objective-C
31 lines
768 B
Objective-C
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
/**
|
|
* The image loader (i.e. RCTImageLoader) implement this to declare whether image performance should be logged.
|
|
*/
|
|
@protocol RCTImageLoaderLoggableProtocol
|
|
|
|
/**
|
|
* Image instrumentation - declares whether its caller should log images
|
|
*/
|
|
- (BOOL)shouldEnablePerfLoggingForRequestUrl:(NSURL *)url;
|
|
|
|
@end
|
|
|
|
/**
|
|
* Image handlers in the image loader implement this to declare whether image performance should be logged.
|
|
*/
|
|
@protocol RCTImageLoaderLoggable
|
|
|
|
/**
|
|
* Image instrumentation - declares whether its caller should log images
|
|
*/
|
|
- (BOOL)shouldEnablePerfLogging;
|
|
|
|
@end
|