summaryrefslogtreecommitdiffstats
path: root/core/java/android/backup/SharedPreferencesBackupHelper.java
diff options
context:
space:
mode:
authorMathias Agopian <mathias@google.com>2009-05-08 13:13:12 -0700
committerMathias Agopian <mathias@google.com>2009-05-08 13:13:12 -0700
commit6ec72e3fa9cdf9e896f3042fb1b1b4f3f6cea541 (patch)
treec844365aa767f37da6081150dcf3caccb4fb6d46 /core/java/android/backup/SharedPreferencesBackupHelper.java
parent6bebbcd57b7b3ffad3af046f4899d885b30c828e (diff)
parent3cf650dec40c0e40d613c76bd70453205af76ed8 (diff)
downloadframeworks_base-6ec72e3fa9cdf9e896f3042fb1b1b4f3f6cea541.zip
frameworks_base-6ec72e3fa9cdf9e896f3042fb1b1b4f3f6cea541.tar.gz
frameworks_base-6ec72e3fa9cdf9e896f3042fb1b1b4f3f6cea541.tar.bz2
Merge commit 'goog/master' into merge_master
Diffstat (limited to 'core/java/android/backup/SharedPreferencesBackupHelper.java')
-rw-r--r--core/java/android/backup/SharedPreferencesBackupHelper.java40
1 files changed, 40 insertions, 0 deletions
diff --git a/core/java/android/backup/SharedPreferencesBackupHelper.java b/core/java/android/backup/SharedPreferencesBackupHelper.java
new file mode 100644
index 0000000..e839bb4
--- /dev/null
+++ b/core/java/android/backup/SharedPreferencesBackupHelper.java
@@ -0,0 +1,40 @@
+/*
+ * Copyright (C) 2009 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.backup;
+
+import android.content.Context;
+import android.os.ParcelFileDescriptor;
+
+import java.io.FileDescriptor;
+
+public class SharedPreferencesBackupHelper {
+ public static void performBackup(Context context,
+ ParcelFileDescriptor oldSnapshot, ParcelFileDescriptor newSnapshot,
+ BackupDataOutput data, String[] prefGroups) {
+ String basePath = "/xxx"; //context.getPreferencesDir();
+
+ // make filenames for the prefGroups
+ final int N = prefGroups.length;
+ String[] files = new String[N];
+ for (int i=0; i<N; i++) {
+ files[i] = prefGroups[i] + ".xml";
+ }
+
+ FileBackupHelper.performBackup_checked(basePath, oldSnapshot, newSnapshot, data, files);
+ }
+}
+