Files
react-native/ReactCommon/react/renderer/imagemanager/ImageTelemetry.cpp
T
Paige Sun 0937f13cc3 Do not log image if it fails lifecycle assert in getWillRequestUrlTime
Reviewed By: sammy-SC

Differential Revision: D24990452

fbshipit-source-id: ce4d5ec9e3cf237c6edbd17368f2dcf3aecbec2b
2020-11-16 12:39:00 -08:00

23 lines
476 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.
*/
#include "ImageTelemetry.h"
namespace facebook {
namespace react {
SurfaceId ImageTelemetry::getSurfaceId() const {
return surfaceId_;
}
TelemetryTimePoint ImageTelemetry::getWillRequestUrlTime() const {
return willRequestUrlTime_;
}
} // namespace react
} // namespace facebook