Skip to content

Commit ae41e13

Browse files
committed
Add Gesture Track in Performance Tab (#34546)
DiffTrain build for [05b61f8](05b61f8)
1 parent 5f4fa92 commit ae41e13

34 files changed

+1124
-1144
lines changed

compiled/facebook-www/REVISION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
e0c421ab71e26c05afe506662a4574070c13d131
1+
05b61f812a2070276c5db0d2107808a6161632fc
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
e0c421ab71e26c05afe506662a4574070c13d131
1+
05b61f812a2070276c5db0d2107808a6161632fc

compiled/facebook-www/React-dev.classic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1419,7 +1419,7 @@ __DEV__ &&
14191419
exports.useTransition = function () {
14201420
return resolveDispatcher().useTransition();
14211421
};
1422-
exports.version = "19.2.0-www-classic-e0c421ab-20250924";
1422+
exports.version = "19.2.0-www-classic-05b61f81-20250924";
14231423
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
14241424
"function" ===
14251425
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/React-dev.modern.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1419,7 +1419,7 @@ __DEV__ &&
14191419
exports.useTransition = function () {
14201420
return resolveDispatcher().useTransition();
14211421
};
1422-
exports.version = "19.2.0-www-modern-e0c421ab-20250924";
1422+
exports.version = "19.2.0-www-modern-05b61f81-20250924";
14231423
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
14241424
"function" ===
14251425
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/React-prod.classic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -602,4 +602,4 @@ exports.useSyncExternalStore = function (
602602
exports.useTransition = function () {
603603
return ReactSharedInternals.H.useTransition();
604604
};
605-
exports.version = "19.2.0-www-classic-e0c421ab-20250924";
605+
exports.version = "19.2.0-www-classic-05b61f81-20250924";

compiled/facebook-www/React-prod.modern.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -602,4 +602,4 @@ exports.useSyncExternalStore = function (
602602
exports.useTransition = function () {
603603
return ReactSharedInternals.H.useTransition();
604604
};
605-
exports.version = "19.2.0-www-modern-e0c421ab-20250924";
605+
exports.version = "19.2.0-www-modern-05b61f81-20250924";

compiled/facebook-www/React-profiling.classic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,7 @@ exports.useSyncExternalStore = function (
606606
exports.useTransition = function () {
607607
return ReactSharedInternals.H.useTransition();
608608
};
609-
exports.version = "19.2.0-www-classic-e0c421ab-20250924";
609+
exports.version = "19.2.0-www-classic-05b61f81-20250924";
610610
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
611611
"function" ===
612612
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/React-profiling.modern.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,7 @@ exports.useSyncExternalStore = function (
606606
exports.useTransition = function () {
607607
return ReactSharedInternals.H.useTransition();
608608
};
609-
exports.version = "19.2.0-www-modern-e0c421ab-20250924";
609+
exports.version = "19.2.0-www-modern-05b61f81-20250924";
610610
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
611611
"function" ===
612612
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/ReactART-dev.classic.js

Lines changed: 13 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1423,15 +1423,17 @@ __DEV__ &&
14231423
}
14241424
function setCurrentTrackFromLanes(lanes) {
14251425
currentTrack =
1426-
lanes & 127
1426+
lanes & 63
14271427
? "Blocking"
1428-
: lanes & 4194176
1429-
? "Transition"
1430-
: lanes & 62914560
1431-
? "Suspense"
1432-
: lanes & 2080374784
1433-
? "Idle"
1434-
: "Other";
1428+
: lanes & 64
1429+
? "Gesture"
1430+
: lanes & 4194176
1431+
? "Transition"
1432+
: lanes & 62914560
1433+
? "Suspense"
1434+
: lanes & 2080374784
1435+
? "Idle"
1436+
: "Other";
14351437
}
14361438
function logComponentTrigger(fiber, startTime, endTime, trigger) {
14371439
supportsUserTiming &&
@@ -16496,11 +16498,6 @@ __DEV__ &&
1649616498
var task = animatingTask;
1649716499
animatingLanes &= ~lanes;
1649816500
animatingTask = null;
16499-
0 !== (lanes & 127) &&
16500-
0 === (workInProgressRootRenderLanes & 127) &&
16501-
0 === (pendingEffectsLanes & 127) &&
16502-
(setCurrentTrackFromLanes(2),
16503-
logAnimatingPhase(blockingClampTime, now$1(), task));
1650416501
0 !== (lanes & 4194048) &&
1650516502
0 === (workInProgressRootRenderLanes & 4194048) &&
1650616503
0 === (pendingEffectsLanes & 4194048) &&
@@ -20227,10 +20224,10 @@ __DEV__ &&
2022720224
(function () {
2022820225
var internals = {
2022920226
bundleType: 1,
20230-
version: "19.2.0-www-classic-e0c421ab-20250924",
20227+
version: "19.2.0-www-classic-05b61f81-20250924",
2023120228
rendererPackageName: "react-art",
2023220229
currentDispatcherRef: ReactSharedInternals,
20233-
reconcilerVersion: "19.2.0-www-classic-e0c421ab-20250924"
20230+
reconcilerVersion: "19.2.0-www-classic-05b61f81-20250924"
2023420231
};
2023520232
internals.overrideHookState = overrideHookState;
2023620233
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -20264,7 +20261,7 @@ __DEV__ &&
2026420261
exports.Shape = Shape;
2026520262
exports.Surface = Surface;
2026620263
exports.Text = Text;
20267-
exports.version = "19.2.0-www-classic-e0c421ab-20250924";
20264+
exports.version = "19.2.0-www-classic-05b61f81-20250924";
2026820265
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
2026920266
"function" ===
2027020267
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/ReactART-dev.modern.js

Lines changed: 13 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1329,15 +1329,17 @@ __DEV__ &&
13291329
}
13301330
function setCurrentTrackFromLanes(lanes) {
13311331
currentTrack =
1332-
lanes & 127
1332+
lanes & 63
13331333
? "Blocking"
1334-
: lanes & 4194176
1335-
? "Transition"
1336-
: lanes & 62914560
1337-
? "Suspense"
1338-
: lanes & 2080374784
1339-
? "Idle"
1340-
: "Other";
1334+
: lanes & 64
1335+
? "Gesture"
1336+
: lanes & 4194176
1337+
? "Transition"
1338+
: lanes & 62914560
1339+
? "Suspense"
1340+
: lanes & 2080374784
1341+
? "Idle"
1342+
: "Other";
13411343
}
13421344
function logComponentTrigger(fiber, startTime, endTime, trigger) {
13431345
supportsUserTiming &&
@@ -16309,11 +16311,6 @@ __DEV__ &&
1630916311
var task = animatingTask;
1631016312
animatingLanes &= ~lanes;
1631116313
animatingTask = null;
16312-
0 !== (lanes & 127) &&
16313-
0 === (workInProgressRootRenderLanes & 127) &&
16314-
0 === (pendingEffectsLanes & 127) &&
16315-
(setCurrentTrackFromLanes(2),
16316-
logAnimatingPhase(blockingClampTime, now$1(), task));
1631716314
0 !== (lanes & 4194048) &&
1631816315
0 === (workInProgressRootRenderLanes & 4194048) &&
1631916316
0 === (pendingEffectsLanes & 4194048) &&
@@ -19998,10 +19995,10 @@ __DEV__ &&
1999819995
(function () {
1999919996
var internals = {
2000019997
bundleType: 1,
20001-
version: "19.2.0-www-modern-e0c421ab-20250924",
19998+
version: "19.2.0-www-modern-05b61f81-20250924",
2000219999
rendererPackageName: "react-art",
2000320000
currentDispatcherRef: ReactSharedInternals,
20004-
reconcilerVersion: "19.2.0-www-modern-e0c421ab-20250924"
20001+
reconcilerVersion: "19.2.0-www-modern-05b61f81-20250924"
2000520002
};
2000620003
internals.overrideHookState = overrideHookState;
2000720004
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -20035,7 +20032,7 @@ __DEV__ &&
2003520032
exports.Shape = Shape;
2003620033
exports.Surface = Surface;
2003720034
exports.Text = Text;
20038-
exports.version = "19.2.0-www-modern-e0c421ab-20250924";
20035+
exports.version = "19.2.0-www-modern-05b61f81-20250924";
2003920036
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
2004020037
"function" ===
2004120038
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

0 commit comments

Comments
 (0)