Increase service call timeout to 45 seconds

Bug: 2627273
Change-Id: I971aa271cfc03e669e72f7871856cb9cfc10aa14
This commit is contained in:
Marc Blank 2010-04-26 08:13:01 -07:00
parent da71abeb8f
commit b62cbc7e7b

View File

@ -57,7 +57,8 @@ public class EmailServiceProxy implements IEmailService {
private ServiceConnection mSyncManagerConnection = new EmailServiceConnection ();
private IEmailService mService = null;
private Object mReturn = null;
private int mTimeout = 30;
// Service call timeout (in seconds)
private int mTimeout = 45;
private boolean mDead = false;
public EmailServiceProxy(Context _context, Class<?> _class) {