Helper API cleanup. Allows multiple helpers to function,

because they'll always go in the same order, and this lets
us not have to write headers to keep them paired.
This commit is contained in:
Joe Onorato
2009-06-18 20:10:37 -07:00
parent eed76b2a8d
commit 06290a4bb9
19 changed files with 299 additions and 297 deletions

View File

@@ -164,8 +164,8 @@ class BackupManagerService extends IBackupManager.Stub {
// Set up our transport options and initialize the default transport
// TODO: Have transports register themselves somehow?
// TODO: Don't create transports that we don't need to?
//mTransportId = BackupManager.TRANSPORT_LOCAL;
mTransportId = BackupManager.TRANSPORT_GOOGLE;
mTransportId = BackupManager.TRANSPORT_LOCAL;
//mTransportId = BackupManager.TRANSPORT_GOOGLE;
mLocalTransport = new LocalTransport(context); // This is actually pretty cheap
mGoogleTransport = null;