Fix build.

Change-Id: I0e419fdb36cedba67fc6da7f71134d9728f66150
This commit is contained in:
Dan Sandler
2015-04-21 10:24:32 -04:00
parent 954863ab9b
commit aa861666ed
2 changed files with 2 additions and 2 deletions

View File

@@ -283,7 +283,7 @@ public final class Parcel {
private static native void nativeWriteInterfaceToken(long nativePtr, String interfaceName);
private static native void nativeEnforceInterface(long nativePtr, String interfaceName);
private static native long nativeGetAshmemSize(long nativePtr);
private static native long nativeGetBlobAshmemSize(long nativePtr);
public final static Parcelable.Creator<String> STRING_CREATOR
= new Parcelable.Creator<String>() {

View File

@@ -766,7 +766,7 @@ static const JNINativeMethod gParcelMethods[] = {
{"getGlobalAllocSize", "()J", (void*)android_os_Parcel_getGlobalAllocSize},
{"getGlobalAllocCount", "()J", (void*)android_os_Parcel_getGlobalAllocCount},
{"nativeGetAshmemSize", "(J)J", (void*)android_os_Parcel_getAshmemSize},
{"nativeGetBlobAshmemSize", "(J)J", (void*)android_os_Parcel_getBlobAshmemSize},
};
const char* const kParcelPathName = "android/os/Parcel";