diff options
author | Christopher Tate <ctate@google.com> | 2009-04-29 14:03:25 -0700 |
---|---|---|
committer | Christopher Tate <ctate@google.com> | 2009-04-29 14:49:30 -0700 |
commit | 487529a70cd1479ae8d6bbfb356be7e72542c185 (patch) | |
tree | ca19a948a28e9d4eb7b4c9890b006e43b89d7a6d /core/java/com | |
parent | dc67739af90aa31a0b546c14bf1e68e6acbb8375 (diff) | |
download | frameworks_base-487529a70cd1479ae8d6bbfb356be7e72542c185.zip frameworks_base-487529a70cd1479ae8d6bbfb356be7e72542c185.tar.gz frameworks_base-487529a70cd1479ae8d6bbfb356be7e72542c185.tar.bz2 |
First baby steps towards settings backup
This change adds a sketched outline of the backup system architecture, with
all of the major pieces represented other than client-side helpers for
specific types of data. IBackupManager and BackupService are public so that
we can write test apps against SDK-domain symbols from the outset.
What code exists in this change hasn't been tested and may crash. It's the
beginnings of the real implementation but of course is barely begun.
Diffstat (limited to 'core/java/com')
-rw-r--r-- | core/java/com/android/internal/backup/IBackupTransport.aidl | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/core/java/com/android/internal/backup/IBackupTransport.aidl b/core/java/com/android/internal/backup/IBackupTransport.aidl new file mode 100644 index 0000000..d64a303 --- /dev/null +++ b/core/java/com/android/internal/backup/IBackupTransport.aidl @@ -0,0 +1,21 @@ +/* + * 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 com.android.internal.backup; + +/** {@hide} */ +interface IBackupTransport { +} |