Update ActivityMonitor.onMatchIntent to ActivityMonitor.onStartActivity.

Bug: 37672383
Change-Id: I63adcafc6e8dced173d52f25e8a6521ae897c9aa
Test: builds
This commit is contained in:
Sudheer Shanka
2017-04-26 17:34:47 -07:00
parent 3decc865dc
commit 1bd1d8dabb

View File

@@ -93,7 +93,7 @@ public class EncryptionInterstitialTest {
Intent mMatchedIntent = null; Intent mMatchedIntent = null;
@Override @Override
public ActivityResult onMatchIntent(Intent intent) { public ActivityResult onStartActivity(Intent intent) {
if ("test.unlock.intent".equals(intent.getAction())) { if ("test.unlock.intent".equals(intent.getAction())) {
mMatchedIntent = intent; mMatchedIntent = intent;
return new ActivityResult(Activity.RESULT_OK, null); return new ActivityResult(Activity.RESULT_OK, null);