Merge "[CS05]Remove the hidden API usage of MetricsLogger"
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
package android.net {
|
package android.net {
|
||||||
|
|
||||||
public class CaptivePortal implements android.os.Parcelable {
|
public class CaptivePortal implements android.os.Parcelable {
|
||||||
method public void logEvent(int, @NonNull String);
|
method @Deprecated public void logEvent(int, @NonNull String);
|
||||||
method @RequiresPermission(android.Manifest.permission.NETWORK_STACK) public void reevaluateNetwork();
|
method @RequiresPermission(android.Manifest.permission.NETWORK_STACK) public void reevaluateNetwork();
|
||||||
method public void useNetwork();
|
method public void useNetwork();
|
||||||
field public static final int APP_REQUEST_REEVALUATION_REQUIRED = 100; // 0x64
|
field public static final int APP_REQUEST_REEVALUATION_REQUIRED = 100; // 0x64
|
||||||
|
|||||||
@@ -160,12 +160,11 @@ public class CaptivePortal implements Parcelable {
|
|||||||
* @param eventId one of the CAPTIVE_PORTAL_LOGIN_* constants in metrics_constants.proto.
|
* @param eventId one of the CAPTIVE_PORTAL_LOGIN_* constants in metrics_constants.proto.
|
||||||
* @param packageName captive portal application package name.
|
* @param packageName captive portal application package name.
|
||||||
* @hide
|
* @hide
|
||||||
|
* @deprecated The event will not be logged in Android S and above. The
|
||||||
|
* caller is migrating to statsd.
|
||||||
*/
|
*/
|
||||||
|
@Deprecated
|
||||||
@SystemApi
|
@SystemApi
|
||||||
public void logEvent(int eventId, @NonNull String packageName) {
|
public void logEvent(int eventId, @NonNull String packageName) {
|
||||||
try {
|
|
||||||
ICaptivePortal.Stub.asInterface(mBinder).logEvent(eventId, packageName);
|
|
||||||
} catch (RemoteException e) {
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -23,5 +23,4 @@ package android.net;
|
|||||||
oneway interface ICaptivePortal {
|
oneway interface ICaptivePortal {
|
||||||
void appRequest(int request);
|
void appRequest(int request);
|
||||||
void appResponse(int response);
|
void appResponse(int response);
|
||||||
void logEvent(int eventId, String packageName);
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user