mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/43963 changelog: [internal] This experiment did work out. Let's clean it up Reviewed By: cortinico Differential Revision: D55797519 fbshipit-source-id: a5da97a7d31b9395b25bfd37db567054721599b0
45 lines
1.4 KiB
C++
45 lines
1.4 KiB
C++
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @generated SignedSource<<664351a329e558acf1923baeafe35e9d>>
|
|
*/
|
|
|
|
/**
|
|
* IMPORTANT: Do NOT modify this file directly.
|
|
*
|
|
* To change the definition of the flags, edit
|
|
* packages/react-native/scripts/featureflags/ReactNativeFeatureFlags.config.js.
|
|
*
|
|
* To regenerate this code, run the following script from the repo root:
|
|
* yarn featureflags-update
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace facebook::react {
|
|
|
|
class ReactNativeFeatureFlagsProvider {
|
|
public:
|
|
virtual ~ReactNativeFeatureFlagsProvider() = default;
|
|
|
|
virtual bool commonTestFlag() = 0;
|
|
virtual bool batchRenderingUpdatesInEventLoop() = 0;
|
|
virtual bool enableBackgroundExecutor() = 0;
|
|
virtual bool enableCleanTextInputYogaNode() = 0;
|
|
virtual bool enableCustomDrawOrderFabric() = 0;
|
|
virtual bool enableMicrotasks() = 0;
|
|
virtual bool enableMountHooksAndroid() = 0;
|
|
virtual bool enableSpannableBuildingUnification() = 0;
|
|
virtual bool enableSynchronousStateUpdates() = 0;
|
|
virtual bool enableUIConsistency() = 0;
|
|
virtual bool inspectorEnableCxxInspectorPackagerConnection() = 0;
|
|
virtual bool inspectorEnableModernCDPRegistry() = 0;
|
|
virtual bool useModernRuntimeScheduler() = 0;
|
|
virtual bool useNativeViewConfigsInBridgelessMode() = 0;
|
|
};
|
|
|
|
} // namespace facebook::react
|