| 505 | } |
| 506 | |
| 507 | void doSetRootViewToContext(jlong contextHandle, const Valdi::Ref<Valdi::View>& rootView) { |
| 508 | auto viewNodeTree = getViewNodeTree(contextHandle); |
| 509 | |
| 510 | if (viewNodeTree == nullptr) { |
| 511 | return; |
| 512 | } |
| 513 | |
| 514 | viewNodeTree->setRootView(rootView); |
| 515 | } |
| 516 | |
| 517 | void ValdiAndroid::NativeBridge::setRootView( // NOLINT |
| 518 | fbjni::alias_ref<fbjni::JClass> /* clazz */, // NOLINT |
no test coverage detected