mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-24 04:16:00 +08:00
added QPL for main interactions
Reviewed By: @amirrosenfeld Differential Revision: D2488420
This commit is contained in:
committed by
facebook-github-bot-5
parent
0ad05043f5
commit
5b2099f87f
@@ -28,7 +28,7 @@ var QuickPerformanceLogger = {
|
||||
MarkerId: {},
|
||||
|
||||
markerStart(markerId, opts) {
|
||||
if (markerId === undefined) {
|
||||
if (typeof markerId !== 'number') {
|
||||
return;
|
||||
}
|
||||
if (global.nativeQPLMarkerStart) {
|
||||
@@ -38,7 +38,7 @@ var QuickPerformanceLogger = {
|
||||
},
|
||||
|
||||
markerEnd(markerId, actionId, opts) {
|
||||
if (markerId === undefined || actionId === undefined) {
|
||||
if (typeof markerId !== 'number' || typeof actionId !== 'number') {
|
||||
return;
|
||||
}
|
||||
if (global.nativeQPLMarkerEnd) {
|
||||
@@ -48,7 +48,7 @@ var QuickPerformanceLogger = {
|
||||
},
|
||||
|
||||
markerNote(markerId, actionId, opts) {
|
||||
if (markerId === undefined || actionId === undefined) {
|
||||
if (typeof markerId !== 'number' || typeof actionId !== 'number') {
|
||||
return;
|
||||
}
|
||||
if (global.nativeQPLMarkerNote) {
|
||||
@@ -58,7 +58,7 @@ var QuickPerformanceLogger = {
|
||||
},
|
||||
|
||||
markerCancel(markerId, opts) {
|
||||
if (markerId === undefined) {
|
||||
if (typeof markerId !== 'number') {
|
||||
return;
|
||||
}
|
||||
if (global.nativeQPLMarkerCancel) {
|
||||
|
||||
Reference in New Issue
Block a user