#include "android_webview/common/aw_resource.h"
#include "base/android/jni_array.h"
#include "base/android/jni_string.h"
#include "base/android/scoped_java_ref.h"
#include "android_webview/common_jni/AwResource_jni.h"
using base::android::ScopedJavaLocalRef;
namespace android_webview {
namespace AwResource {
std::vector<std::string> GetConfigKeySystemUuidMapping() {
JNIEnv* env = jni_zero::AttachCurrentThread();
std::vector<std::string> key_system_uuid_mappings;
ScopedJavaLocalRef<jobjectArray> mappings =
Java_AwResource_getConfigKeySystemUuidMapping(env);
base::android::AppendJavaStringArrayToStringVector(env, mappings,
&key_system_uuid_mappings);
return key_system_uuid_mappings;
}
}
}
DEFINE_JNI(AwResource)