| 476 | } |
| 477 | |
| 478 | void ValdiAndroid::NativeBridge::setParentContext( // NOLINT |
| 479 | fbjni::alias_ref<fbjni::JClass> /* clazz */, // NOLINT |
| 480 | jlong contextHandle, |
| 481 | jlong parentContextHandle) { |
| 482 | auto viewNodeTree = getViewNodeTree(contextHandle); |
| 483 | auto parentViewNodeTree = getViewNodeTree(parentContextHandle); |
| 484 | |
| 485 | if (viewNodeTree != nullptr) { |
| 486 | viewNodeTree->setParentTree(parentViewNodeTree); |
| 487 | } |
| 488 | } |
| 489 | |
| 490 | jobject ValdiAndroid::NativeBridge::getViewNodeBackingView( // NOLINT |
| 491 | fbjni::alias_ref<fbjni::JClass> /* clazz */, // NOLINT |
no test coverage detected