am b62cbc7e: Increase service call timeout to 45 seconds

Merge commit 'b62cbc7e7b82739c307b5cb3175bbfff5f549295' into froyo-plus-aosp

* commit 'b62cbc7e7b82739c307b5cb3175bbfff5f549295':
  Increase service call timeout to 45 seconds
This commit is contained in:
Marc Blank 2010-04-26 10:08:21 -07:00 committed by Android Git Automerger
commit d718abd38c

View File

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