am 47752716: Merge "Fix a crash signing in with oauth" into ub-mail-algol

* commit '4775271611401a4d9b0c495e7ffe09fffbc1633d':
  Fix a crash signing in with oauth
This commit is contained in:
Martin Hibdon 2014-04-04 22:03:51 +00:00 committed by Android Git Automerger
commit 2dfa5cdf3f
1 changed files with 3 additions and 3 deletions

View File

@ -47,9 +47,9 @@ public class OAuthAuthenticationActivity extends Activity implements
public static final int REQUEST_OAUTH = 1;
public static final int RESULT_OAUTH_SUCCESS = 0;
public static final int RESULT_OAUTH_USER_CANCELED = -1;
public static final int RESULT_OAUTH_FAILURE = -2;
public static final int RESULT_OAUTH_SUCCESS = Activity.RESULT_FIRST_USER + 0;
public static final int RESULT_OAUTH_USER_CANCELED = Activity.RESULT_FIRST_USER + 1;
public static final int RESULT_OAUTH_FAILURE = Activity.RESULT_FIRST_USER + 2;
private WebView mWv;
private OAuthProvider mProvider;