File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
packages/react-native/ReactCommon/react/networking Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -27,14 +27,14 @@ namespace facebook::react {
2727 * reporting.
2828 */
2929struct ResourceTimingData {
30- std::string url;
31- HighResTimeStamp fetchStart;
32- HighResTimeStamp requestStart;
33- std::optional<HighResTimeStamp> connectStart;
34- std::optional<HighResTimeStamp> connectEnd;
35- std::optional<HighResTimeStamp> responseStart;
30+ std::string url{} ;
31+ HighResTimeStamp fetchStart{} ;
32+ HighResTimeStamp requestStart{} ;
33+ std::optional<HighResTimeStamp> connectStart{} ;
34+ std::optional<HighResTimeStamp> connectEnd{} ;
35+ std::optional<HighResTimeStamp> responseStart{} ;
3636 int responseStatus = 0 ;
37- std::string contentType;
37+ std::string contentType{} ;
3838 int encodedBodySize = 0 ;
3939 int decodedBodySize = 0 ;
4040};
You can’t perform that action at this time.
0 commit comments