public interface CefQueryCallback
| Modifier and Type | Method and Description |
|---|---|
void |
failure(int error_code,
java.lang.String error_message)
Notify the associated JavaScript onFailure callback that the query has
failed.
|
void |
success(java.lang.String response)
Notify the associated JavaScript onSuccess callback that the query has
completed successfully.
|
void failure(int error_code,
java.lang.String error_message)
error_code - Error code passed to JavaScript.error_message - Error message passed to JavaScript.void success(java.lang.String response)
response - Response passed to JavaScript.