mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
0937f13cc3
Reviewed By: sammy-SC Differential Revision: D24990452 fbshipit-source-id: ce4d5ec9e3cf237c6edbd17368f2dcf3aecbec2b
23 lines
476 B
C++
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
|