21 lines
542 B
C++
21 lines
542 B
C++
// Copyright (c) 2024 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 "int_callback.h"
|
|
|
|
#include "jni_scoped_helpers.h"
|
|
#include "jni_util.h"
|
|
#include "util.h"
|
|
|
|
IntCallback::IntCallback(JNIEnv* env, jobject jcallback)
|
|
: handle_(env, jcallback) {}
|
|
|
|
void IntCallback::onComplete(int value) {
|
|
ScopedJNIEnv env;
|
|
if (!env)
|
|
return;
|
|
|
|
JNI_CALL_VOID_METHOD(env, handle_, "onComplete", "(I)V", (jint)value);
|
|
}
|