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
43 lines
832 B
C++
43 lines
832 B
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.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <react/renderer/core/ReactPrimitives.h>
|
|
#include <react/utils/Telemetry.h>
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
/*
|
|
* Represents telemetry data associated with a image request
|
|
*/
|
|
class ImageTelemetry final {
|
|
public:
|
|
ImageTelemetry(SurfaceId const surfaceId) : surfaceId_(surfaceId) {}
|
|
|
|
/*
|
|
* Signaling
|
|
*/
|
|
void willRequestUrl();
|
|
|
|
/*
|
|
* Reading
|
|
*/
|
|
TelemetryTimePoint getWillRequestUrlTime() const;
|
|
|
|
SurfaceId getSurfaceId() const;
|
|
|
|
private:
|
|
TelemetryTimePoint willRequestUrlTime_{kTelemetryUndefinedTimePoint};
|
|
|
|
const SurfaceId surfaceId_;
|
|
};
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|