mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
24ababc915
Summary: Original commit changeset: 91eb08181f82 Original diff: D16940181 The original commit removed the gating logic to enable the "fix" to T48583301. However, v236 was burned, and v237+ no longer had this gating, making it impossible to measure the impact of the fix. This diff reverted the original gating removal until we confirm the fix in prod. Note: this is to be picked to RC v238 (but will have merge conflict for sure, will send a separate diff for the branch). Reviewed By: mmmulani Differential Revision: D17251340 fbshipit-source-id: 359ac54aeb9c9e728c2735c688346a1f79ed2189
16 lines
371 B
Objective-C
16 lines
371 B
Objective-C
/**
|
|
* Copyright (c) Facebook, Inc. and its 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/RCTAnimatedImage.h>
|
|
#import <React/RCTDefines.h>
|
|
|
|
RCT_EXTERN void RCTUIImageViewEnableWeakProxy(BOOL enabled);
|
|
|
|
@interface RCTUIImageViewAnimated : UIImageView
|
|
|
|
@end
|