Skip to content

Commit

Permalink
Fix Java signature for CefRequestHandler#onRenderProcessTerminated me…
Browse files Browse the repository at this point in the history
…thod
  • Loading branch information
dcernoch-up authored and magreenblatt committed Oct 16, 2024
1 parent 99c2f7a commit 8b4225a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion native/request_handler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,7 @@ void RequestHandler::OnRenderProcessTerminated(CefRefPtr<CefBrowser> browser,
JNI_CALL_VOID_METHOD(
env, handle_, "onRenderProcessTerminated",
"(Lorg/cef/browser/CefBrowser;"
"Lorg/cef/handler/CefRequestHandler$TerminationStatus;)V",
"Lorg/cef/handler/CefRequestHandler$TerminationStatus;"
"ILjava/lang/String;)V",
jbrowser.get(), jstatus.get(), error_code, jerrorString.get());
}

0 comments on commit 8b4225a

Please sign in to comment.