| Index: base/android/jni_array.h
|
| diff --git a/base/android/jni_array.h b/base/android/jni_array.h
|
| index 122b88ca2912ed268a02b77a419e7e35fb6e50cd..658239df8e94b0236b101e7816caf1075f106839 100644
|
| --- a/base/android/jni_array.h
|
| +++ b/base/android/jni_array.h
|
| @@ -99,6 +99,13 @@ BASE_EXPORT void JavaArrayOfByteArrayToStringVector(
|
| jobjectArray array,
|
| std::vector<std::string>* out);
|
|
|
| +// Assuming |array| is an int[][] (array of int arrays), replaces the
|
| +// contents of |out| with the corresponding vectors of ints.
|
| +BASE_EXPORT void JavaArrayOfIntArrayToIntVector(
|
| + JNIEnv* env,
|
| + jobjectArray array,
|
| + std::vector<std::vector<int>>* out);
|
| +
|
| } // namespace android
|
| } // namespace base
|
|
|
|
|