Skip to content

Commit 5ae5a12

Browse files
rubennortefacebook-github-bot
authored andcommitted
Ship Web Performance APIs in canary (#53712)
Summary: Pull Request resolved: #53712 Changelog: [internal] This enables the new Web Performance APIs in the canary channel. Reviewed By: cortinico Differential Revision: D82117694 fbshipit-source-id: 370b8397eeec350be8434728ab9d8ce1f5926117
1 parent 9962add commit 5ae5a12

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

packages/react-native/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsOverrides_RNOSS_Canary_Android.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* This source code is licensed under the MIT license found in the
55
* LICENSE file in the root directory of this source tree.
66
*
7-
* @generated SignedSource<<f82b5905d822f8009c054a9443f86e39>>
7+
* @generated SignedSource<<4464982256b8ce543d9235fccbf67054>>
88
*/
99

1010
/**
@@ -27,6 +27,8 @@ public open class ReactNativeFeatureFlagsOverrides_RNOSS_Canary_Android : ReactN
2727

2828
override fun enableFabricRenderer(): Boolean = true
2929

30+
override fun enableWebPerformanceAPIsByDefault(): Boolean = true
31+
3032
override fun useNativeViewConfigsInBridgelessMode(): Boolean = true
3133

3234
override fun useTurboModuleInterop(): Boolean = true

packages/react-native/ReactCommon/react/featureflags/ReactNativeFeatureFlagsOverridesOSSCanary.h

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* This source code is licensed under the MIT license found in the
55
* LICENSE file in the root directory of this source tree.
66
*
7-
* @generated SignedSource<<db8626cf78a3ed226bbbe6bf20cc03a2>>
7+
* @generated SignedSource<<32a03e199994c91c022013d7929bfea5>>
88
*/
99

1010
/**
@@ -35,6 +35,10 @@ class ReactNativeFeatureFlagsOverridesOSSCanary : public ReactNativeFeatureFlags
3535
return true;
3636
}
3737

38+
bool enableWebPerformanceAPIsByDefault() override {
39+
return true;
40+
}
41+
3842
bool useNativeViewConfigsInBridgelessMode() override {
3943
return true;
4044
}

packages/react-native/scripts/featureflags/ReactNativeFeatureFlags.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ const definitions: FeatureFlagDefinitions = {
535535
expectedReleaseValue: true,
536536
purpose: 'release',
537537
},
538-
ossReleaseStage: 'none',
538+
ossReleaseStage: 'canary',
539539
},
540540
fixMappingOfEventPrioritiesBetweenFabricAndReact: {
541541
defaultValue: false,

0 commit comments

Comments
 (0)