Skip to content

Commit

Permalink
[Android] Fix the invalid arguments issue in XWalkRuntimeClient.onAct…
Browse files Browse the repository at this point in the history
…ivityResult.

Missing the instance argument in onActivityResult, this causes exception while
onActivityResult is called.

BUG=crosswalk-project#732
  • Loading branch information
sqliu committed Sep 22, 2013
1 parent 3173541 commit 63909af
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public void onDestroy() {
* @param data the data to contain the result data
*/
public void onActivityResult(int requestCode, int resultCode, Intent data) {
invokeMethod(mOnActivityResult, requestCode, resultCode, data);
invokeMethod(mOnActivityResult, mInstance, requestCode, resultCode, data);
}

/**
Expand Down

0 comments on commit 63909af

Please sign in to comment.