Merge "Unhide constructors of DataService and NetworkService." into pi-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
271ba383b6
@@ -5108,6 +5108,7 @@ package android.telephony {
|
||||
}
|
||||
|
||||
public abstract class NetworkService extends android.app.Service {
|
||||
ctor public NetworkService();
|
||||
method protected abstract android.telephony.NetworkService.NetworkServiceProvider createNetworkServiceProvider(int);
|
||||
field public static final java.lang.String NETWORK_SERVICE_EXTRA_SLOT_ID = "android.telephony.extra.SLOT_ID";
|
||||
field public static final java.lang.String NETWORK_SERVICE_INTERFACE = "android.telephony.NetworkService";
|
||||
@@ -5389,6 +5390,7 @@ package android.telephony.data {
|
||||
}
|
||||
|
||||
public abstract class DataService extends android.app.Service {
|
||||
ctor public DataService();
|
||||
method public abstract android.telephony.data.DataService.DataServiceProvider createDataServiceProvider(int);
|
||||
field public static final java.lang.String DATA_SERVICE_EXTRA_SLOT_ID = "android.telephony.data.extra.SLOT_ID";
|
||||
field public static final java.lang.String DATA_SERVICE_INTERFACE = "android.telephony.data.DataService";
|
||||
|
||||
@@ -206,8 +206,10 @@ public abstract class NetworkService extends Service {
|
||||
}
|
||||
}
|
||||
|
||||
/** @hide */
|
||||
protected NetworkService() {
|
||||
/**
|
||||
* Default constructor.
|
||||
*/
|
||||
public NetworkService() {
|
||||
mHandlerThread = new HandlerThread(TAG);
|
||||
mHandlerThread.start();
|
||||
|
||||
|
||||
@@ -429,8 +429,10 @@ public abstract class DataService extends Service {
|
||||
}
|
||||
}
|
||||
|
||||
/** @hide */
|
||||
protected DataService() {
|
||||
/**
|
||||
* Default constructor.
|
||||
*/
|
||||
public DataService() {
|
||||
mHandlerThread = new HandlerThread(TAG);
|
||||
mHandlerThread.start();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user