-
Notifications
You must be signed in to change notification settings - Fork 159
/
Copy pathCefQueryCallback_N.cpp
48 lines (40 loc) · 1.67 KB
/
CefQueryCallback_N.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// Copyright (c) 2014 The Chromium Embedded Framework Authors. All rights
// reserved. Use of this source code is governed by a BSD-style license that
// can be found in the LICENSE file.
#include "CefQueryCallback_N.h"
#include "include/wrapper/cef_message_router.h"
#include "jni_scoped_helpers.h"
#include "jni_util.h"
namespace {
using CefQueryCallback = CefMessageRouterBrowserSide::Callback;
CefRefPtr<CefQueryCallback> GetSelf(jlong self) {
return reinterpret_cast<CefQueryCallback*>(self);
}
void ClearSelf(JNIEnv* env, jobject obj) {
// Clear the reference added in ClientHandler::OnQuery.
SetCefForJNIObject<CefQueryCallback>(env, obj, nullptr, "CefQueryCallback");
}
} // namespace
JNIEXPORT void JNICALL
Java_org_cef_callback_CefQueryCallback_1N_N_1Success(JNIEnv* env,
jobject obj,
jlong self,
jstring response) {
CefRefPtr<CefQueryCallback> callback = GetSelf(self);
if (!callback)
return;
callback->Success(GetJNIString(env, response));
ClearSelf(env, obj);
}
JNIEXPORT void JNICALL
Java_org_cef_callback_CefQueryCallback_1N_N_1Failure(JNIEnv* env,
jobject obj,
jlong self,
jint error_code,
jstring error_message) {
CefRefPtr<CefQueryCallback> callback = GetSelf(self);
if (!callback)
return;
callback->Failure(error_code, GetJNIString(env, error_message));
ClearSelf(env, obj);
}