Add audio service support to BridgeContext

Bug: http://b.android.com/259326
Test: N/A
Change-Id: Ie43ccca49a5e77d82426b4f265e3c05dddfacad9
This commit is contained in:
Diego Perez
2017-03-29 12:03:58 +01:00
parent 76c32a35a9
commit 31f7d6f535

View File

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