mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: changelog: [internal] preemtive view allocation has been disabled on iOS for over a year. We kept the code in but didn't do anything with it. This diff removes the code and related mobile config. Post where we decided to turn preemtive view allocation off: https://fb.workplace.com/groups/215742978987717/permalink/832644567297552/ jest_e2e[run_all_tests] Reviewed By: mdvacca Differential Revision: D37922589 fbshipit-source-id: 1af8949cbbd9d48a2d80ca238b280178cbe2ead5
78 lines
2.5 KiB
Objective-C
78 lines
2.5 KiB
Objective-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.
|
|
*/
|
|
|
|
#import <React/RCTDefines.h>
|
|
|
|
RCT_EXTERN NSString *const RCTUserInterfaceStyleDidChangeNotification;
|
|
RCT_EXTERN NSString *const RCTUserInterfaceStyleDidChangeNotificationTraitCollectionKey;
|
|
|
|
/**
|
|
* This notification fires when the bridge initializes.
|
|
*/
|
|
RCT_EXTERN NSString *const RCTJavaScriptWillStartLoadingNotification;
|
|
|
|
/**
|
|
* This notification fires when the bridge starts executing the JS bundle.
|
|
*/
|
|
RCT_EXTERN NSString *const RCTJavaScriptWillStartExecutingNotification;
|
|
|
|
/**
|
|
* This notification fires when the bridge has finished loading the JS bundle.
|
|
*/
|
|
RCT_EXTERN NSString *const RCTJavaScriptDidLoadNotification;
|
|
|
|
/**
|
|
* This notification fires when the bridge failed to load the JS bundle. The
|
|
* `error` key can be used to determine the error that occurred.
|
|
*/
|
|
RCT_EXTERN NSString *const RCTJavaScriptDidFailToLoadNotification;
|
|
|
|
/**
|
|
* This notification fires each time a native module is instantiated. The
|
|
* `module` key will contain a reference to the newly-created module instance.
|
|
* Note that this notification may be fired before the module is available via
|
|
* the `[bridge moduleForClass:]` method.
|
|
*/
|
|
RCT_EXTERN NSString *const RCTDidInitializeModuleNotification;
|
|
|
|
/**
|
|
* This notification fires each time a module is setup after it is initialized. The
|
|
* `RCTDidSetupModuleNotificationModuleNameKey` key will contain a reference to the module name and
|
|
* `RCTDidSetupModuleNotificationSetupTimeKey` will contain the setup time in ms.
|
|
*/
|
|
RCT_EXTERN NSString *const RCTDidSetupModuleNotification;
|
|
|
|
/**
|
|
* Key for the module name (NSString) in the
|
|
* RCTDidSetupModuleNotification userInfo dictionary.
|
|
*/
|
|
RCT_EXTERN NSString *const RCTDidSetupModuleNotificationModuleNameKey;
|
|
|
|
/**
|
|
* Key for the setup time (NSNumber) in the
|
|
* RCTDidSetupModuleNotification userInfo dictionary.
|
|
*/
|
|
RCT_EXTERN NSString *const RCTDidSetupModuleNotificationSetupTimeKey;
|
|
|
|
/*
|
|
* W3C Pointer Events
|
|
*/
|
|
RCT_EXTERN BOOL RCTGetDispatchW3CPointerEvents(void);
|
|
RCT_EXTERN void RCTSetDispatchW3CPointerEvents(BOOL value);
|
|
|
|
/*
|
|
* Validate RCTEventEmitter
|
|
*/
|
|
RCT_EXTERN BOOL RCTGetValidateCanSendEventInRCTEventEmitter(void);
|
|
RCT_EXTERN void RCTSetValidateCanSendEventInRCTEventEmitter(BOOL value);
|
|
|
|
/*
|
|
* Memory Pressure Unloading Level
|
|
*/
|
|
RCT_EXTERN BOOL RCTGetMemoryPressureUnloadLevel(void);
|
|
RCT_EXTERN void RCTSetMemoryPressureUnloadLevel(int value);
|