This source file includes following definitions.
- addStatusChangeListener
- removeStatusChangeListener
- setMasterSyncAutomatically
- getMasterSyncAutomatically
- setSyncAutomatically
- getSyncAutomatically
- setIsSyncable
- getIsSyncable
package org.chromium.sync.notifier;
import android.accounts.Account;
import android.content.SyncStatusObserver;
public interface SyncContentResolverDelegate {
Object addStatusChangeListener(int mask, SyncStatusObserver callback);
void removeStatusChangeListener(Object handle);
void setMasterSyncAutomatically(boolean sync);
boolean getMasterSyncAutomatically();
void setSyncAutomatically(Account account, String authority, boolean sync);
boolean getSyncAutomatically(Account account, String authority);
void setIsSyncable(Account account, String authority, int syncable);
int getIsSyncable(Account account, String authority);
}