Add autofill service to BridgeContext

Test: layoutlib tests
Change-Id: I52b360a64518165eefee4250b1c32e9f5f87845d
This commit is contained in:
Jerome Gaillard 2017-02-23 15:15:49 +00:00
parent df0824ad4c
commit 88403817a2

@ -640,6 +640,10 @@ public class BridgeContext extends Context {
return AccessibilityManager.getInstance(this);
}
if (AUTO_FILL_MANAGER_SERVICE.equals(service)) {
return null;
}
throw new UnsupportedOperationException("Unsupported Service: " + service);
}