From 52acbbdd62fb8c329f323793f98d009420458f7c Mon Sep 17 00:00:00 2001 From: Kevin Gozali Date: Tue, 27 Feb 2018 08:10:25 -0800 Subject: [PATCH] iOS: adjusted JSI binding for C++ FabricUIManager Reviewed By: sebmarkbage, shergin Differential Revision: D7078631 fbshipit-source-id: 6df21e52d3941372a9845fdcf2aed777de7cb359 --- ReactCommon/fabric/FabricUIManager.cpp | 4 +--- ReactCommon/fabric/FabricUIManager.h | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/ReactCommon/fabric/FabricUIManager.cpp b/ReactCommon/fabric/FabricUIManager.cpp index c58fd859f..1a383519a 100644 --- a/ReactCommon/fabric/FabricUIManager.cpp +++ b/ReactCommon/fabric/FabricUIManager.cpp @@ -38,9 +38,7 @@ ShadowNodeSetRef FabricUIManager::createChildSet(int rootTag) { void FabricUIManager::appendChildToSet(const ShadowNodeSetRef &childSet, const ShadowNodeRef &childNode) { } -void FabricUIManager::completeRoot(int rootTag) { +void FabricUIManager::completeRoot(int rootTag, const ShadowNodeSetRef &childSet) { } }} - - diff --git a/ReactCommon/fabric/FabricUIManager.h b/ReactCommon/fabric/FabricUIManager.h index 118a71396..7362c54df 100644 --- a/ReactCommon/fabric/FabricUIManager.h +++ b/ReactCommon/fabric/FabricUIManager.h @@ -27,7 +27,7 @@ public: void appendChild(const ShadowNodeRef &parentNode, const ShadowNodeRef &childNode); ShadowNodeSetRef createChildSet(int rootTag); void appendChildToSet(const ShadowNodeSetRef &childSet, const ShadowNodeRef &childNode); - void completeRoot(int rootTag); + void completeRoot(int rootTag, const ShadowNodeSetRef &childSet); }; }}