mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Cleanup FabricBinding class
Summary: This diff removes unused method on the FabricBinding class, these methods were being used as part of the Fabric Android implementation, but they are not necessary anymore. Reviewed By: shergin Differential Revision: D10128636 fbshipit-source-id: 5afef4c2e9f4955af008200c5bdd2b6acc7ef333
This commit is contained in:
committed by
Facebook Github Bot
parent
9e7d918365
commit
001b04f983
@@ -7,7 +7,6 @@
|
||||
package com.facebook.react.fabric;
|
||||
|
||||
import com.facebook.react.bridge.JavaScriptContextHolder;
|
||||
import com.facebook.react.bridge.NativeMap;
|
||||
|
||||
public interface FabricBinding {
|
||||
|
||||
@@ -15,17 +14,4 @@ public interface FabricBinding {
|
||||
void installFabric(
|
||||
JavaScriptContextHolder jsContext, FabricBinder fabricBinder, Object eventBeatManager);
|
||||
|
||||
void releaseEventTarget(long jsContextNativePointer, long eventTargetPointer);
|
||||
|
||||
void releaseEventHandler(long jsContextNativePointer, long eventHandlerPointer);
|
||||
|
||||
void dispatchEventToEmptyTarget(
|
||||
long jsContextNativePointer, long eventHandlerPointer, String type, NativeMap payload);
|
||||
|
||||
void dispatchEventToTarget(
|
||||
long jsContextNativePointer,
|
||||
long eventHandlerPointer,
|
||||
long eventTargetPointer,
|
||||
String type,
|
||||
NativeMap payload);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user