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

This commit is contained in:
Martin Hibdon 2014-04-04 21:59:05 +00:00 committed by Android (Google) Code Review
commit 4775271611
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;