| Index: base/android/jni_array.h
|
| diff --git a/base/android/jni_array.h b/base/android/jni_array.h
|
| index 35e3cbbf50195d158741f7741eceec981b60196a..e9f6213478bfe56faa1ebcf0e9606e91f8f99fe9 100644
|
| --- a/base/android/jni_array.h
|
| +++ b/base/android/jni_array.h
|
| @@ -49,6 +49,11 @@ void JavaByteArrayToByteVector(JNIEnv* env,
|
| jbyteArray byte_array,
|
| std::vector<uint8>* out);
|
|
|
| +// Replaces the content of |out| with the Java ints in |int_array|.
|
| +void JavaIntArrayToIntVector(JNIEnv* env,
|
| + jintArray int_array,
|
| + std::vector<int>* out);
|
| +
|
| } // namespace android
|
| } // namespace base
|
|
|
|
|