summaryrefslogtreecommitdiffstats
path: root/core/java/android/content/ISyncAdapter.aidl
diff options
context:
space:
mode:
authorFred Quintana <fredq@google.com>2009-10-14 15:59:21 -0700
committerFred Quintana <fredq@google.com>2009-10-14 16:06:39 -0700
commite7424ffdafb0c18f753f383ebfb121ea5ebf582b (patch)
tree8e52391a3b81940ad119edcb06bacf0bd386f8e6 /core/java/android/content/ISyncAdapter.aidl
parentc4989b1b75848acbeaf53850fbcfbf2f8812e325 (diff)
downloadframeworks_base-e7424ffdafb0c18f753f383ebfb121ea5ebf582b.zip
frameworks_base-e7424ffdafb0c18f753f383ebfb121ea5ebf582b.tar.gz
frameworks_base-e7424ffdafb0c18f753f383ebfb121ea5ebf582b.tar.bz2
add an IPC for sync initialization
Diffstat (limited to 'core/java/android/content/ISyncAdapter.aidl')
-rw-r--r--core/java/android/content/ISyncAdapter.aidl8
1 files changed, 8 insertions, 0 deletions
diff --git a/core/java/android/content/ISyncAdapter.aidl b/core/java/android/content/ISyncAdapter.aidl
index 4660527..dd9d14e 100644
--- a/core/java/android/content/ISyncAdapter.aidl
+++ b/core/java/android/content/ISyncAdapter.aidl
@@ -44,4 +44,12 @@ oneway interface ISyncAdapter {
* @param syncContext the ISyncContext that was passed to {@link #startSync}
*/
void cancelSync(ISyncContext syncContext);
+
+ /**
+ * Initialize the SyncAdapter for this account and authority.
+ *
+ * @param account the account that should be synced
+ * @param authority the authority that should be synced
+ */
+ void initialize(in Account account, String authority);
}