29 lines
980 B
C++
29 lines
980 B
C++
// Copyright 2018 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// This file encapsulates the JNI headers generated for IntStringCallback, so
|
|
// that the methods defined in the generated headers only end up in one object
|
|
// file. This is similar to //base/android/callback_android.*.
|
|
|
|
#include "base/android/int_string_callback.h"
|
|
|
|
#include <jni.h>
|
|
|
|
#include "base/android/jni_string.h"
|
|
#include "base/base_jni_headers/IntStringCallback_jni.h"
|
|
|
|
namespace base {
|
|
namespace android {
|
|
|
|
void RunIntStringCallbackAndroid(const JavaRef<jobject>& callback,
|
|
int int_arg,
|
|
const std::string& str_arg) {
|
|
JNIEnv* env = AttachCurrentThread();
|
|
Java_IntStringCallback_onResult(env, callback, int_arg,
|
|
ConvertUTF8ToJavaString(env, str_arg));
|
|
}
|
|
|
|
} // namespace android
|
|
} // namespace base
|