Fix a crash signing in with oauth

b/13753410

Change-Id: Ie5909b3db9263d261a422e8fe39e424180f326b9
This commit is contained in:
Martin Hibdon 2014-04-04 14:44:26 -07:00
parent 8e45653752
commit 3144149f73
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;