| Index: base/android/jni_array.h
|
| diff --git a/base/android/jni_array.h b/base/android/jni_array.h
|
| index 0d7ec2ea03b28017e9cddeb42f1658a8a1c5fc94..34b2e2f71d128a89917a6d0e9ac7a2ac545652cb 100644
|
| --- a/base/android/jni_array.h
|
| +++ b/base/android/jni_array.h
|
| @@ -61,6 +61,12 @@ BASE_EXPORT void AppendJavaByteArrayToByteVector(
|
| jbyteArray byte_array,
|
| std::vector<uint8>* out);
|
|
|
| +// Appends the Java longs in |longs_array| onto the end of |out|.
|
| +BASE_EXPORT void AppendJavaLongArrayToLongVector(
|
| + JNIEnv* env,
|
| + jlongArray long_array,
|
| + std::vector<long>* out);
|
| +
|
| // Replaces the content of |out| with the Java bytes in |bytes_array|.
|
| BASE_EXPORT void JavaByteArrayToByteVector(
|
| JNIEnv* env,
|
|
|