Repo created

This commit is contained in:
Fr4nz D13trich 2025-11-22 14:04:28 +01:00
parent 81b91f4139
commit f8c34fa5ee
22732 changed files with 4815320 additions and 2 deletions

View file

@ -0,0 +1,28 @@
// 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