Remove HdmiCecService

The service is replaced with HdmiControlService. Removing all the related
classes and the initialization of the service.

Change-Id: Ic7baaddffb9873613ddd1096e874f226da983939
This commit is contained in:
Jinsuk Kim
2014-06-06 15:52:07 +09:00
parent faecafce62
commit 3f48068d78
16 changed files with 0 additions and 1844 deletions

View File

@ -129,8 +129,6 @@ public final class SystemServer {
"com.android.server.wifi.passpoint.PasspointService";
private static final String WIFI_P2P_SERVICE_CLASS =
"com.android.server.wifi.p2p.WifiP2pService";
private static final String HDMI_CEC_SERVICE_CLASS =
"com.android.server.hdmi.HdmiCecService";
private static final String ETHERNET_SERVICE_CLASS =
"com.android.server.ethernet.EthernetService";
private static final String TASK_SERVICE_CLASS =
@ -953,12 +951,6 @@ public final class SystemServer {
reportWtf("starting MediaSessionService", e);
}
try {
mSystemServiceManager.startService(HDMI_CEC_SERVICE_CLASS);
} catch (Throwable e) {
reportWtf("starting HdmiCec Service", e);
}
try {
mSystemServiceManager.startService(HdmiControlService.class);
} catch (Throwable e) {