summaryrefslogtreecommitdiffstats
path: root/core/jni/AndroidRuntime.cpp
diff options
context:
space:
mode:
authorJoe Onorato <joeo@android.com>2009-05-19 13:41:21 -0700
committerJoe Onorato <joeo@android.com>2009-05-20 11:24:20 -0700
commitd2110dbce071a236b6176de344ca797b737542eb (patch)
tree996e044c8c7bf49463394bc911f0277d969bde5d /core/jni/AndroidRuntime.cpp
parent40f5a4ea3bc90e43a442ab336f2342020bba86b3 (diff)
downloadframeworks_base-d2110dbce071a236b6176de344ca797b737542eb.zip
frameworks_base-d2110dbce071a236b6176de344ca797b737542eb.tar.gz
frameworks_base-d2110dbce071a236b6176de344ca797b737542eb.tar.bz2
Hook up the backup data writer, and add a utility to read the backup data files.
Diffstat (limited to 'core/jni/AndroidRuntime.cpp')
-rw-r--r--core/jni/AndroidRuntime.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/jni/AndroidRuntime.cpp b/core/jni/AndroidRuntime.cpp
index aa6450d..302f39e 100644
--- a/core/jni/AndroidRuntime.cpp
+++ b/core/jni/AndroidRuntime.cpp
@@ -155,6 +155,7 @@ extern int register_android_ddm_DdmHandleNativeHeap(JNIEnv *env);
extern int register_com_android_internal_os_ZygoteInit(JNIEnv* env);
extern int register_android_util_Base64(JNIEnv* env);
extern int register_android_location_GpsLocationProvider(JNIEnv* env);
+extern int register_android_backup_BackupDataOutput(JNIEnv *env);
extern int register_android_backup_FileBackupHelper(JNIEnv *env);
static AndroidRuntime* gCurRuntime = NULL;
@@ -1126,6 +1127,7 @@ static const RegJNIRec gRegJNI[] = {
REG_JNI(register_android_ddm_DdmHandleNativeHeap),
REG_JNI(register_android_util_Base64),
REG_JNI(register_android_location_GpsLocationProvider),
+ REG_JNI(register_android_backup_BackupDataOutput),
REG_JNI(register_android_backup_FileBackupHelper),
};