Move SipService out of SystemServer to phone process.

Companion CL: https://android-git/g/#change,70187
http://b/issue?id=2998069

Change-Id: I90923ac522ef363a4e04292f652d413c5a1526ad
This commit is contained in:
Hung-ying Tyan
2010-09-25 22:49:59 +08:00
parent 04a426f5b5
commit 7e54ef71db
6 changed files with 9 additions and 16 deletions

View File

@@ -17,7 +17,6 @@
package com.android.server;
import com.android.server.am.ActivityManagerService;
import com.android.server.sip.SipService;
import com.android.internal.os.BinderInternal;
import com.android.internal.os.SamplingProfilerIntegration;
@@ -417,16 +416,6 @@ class ServerThread extends Thread {
} catch (Throwable e) {
Slog.e(TAG, "Failure starting DiskStats Service", e);
}
try {
SipService sipService = SipService.create(context);
if (sipService != null) {
Slog.i(TAG, "Sip Service");
ServiceManager.addService("sip", sipService);
}
} catch (Throwable e) {
Slog.e(TAG, "Failure starting SIP Service", e);
}
}
// make sure the ADB_ENABLED setting value matches the secure property value