Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 95d628ef authored by Kevin Chyn's avatar Kevin Chyn
Browse files

1/n: Move fingerprint-service related code to biometrics/fingerprint

Bug: 109900227

Test: builds
Change-Id: I973c816d75c48ed838c1638c45d728b9df4d11ef
parent 6e735fe1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -182,7 +182,7 @@ message IncidentProto {
    ];

    // System Services
    optional com.android.server.fingerprint.FingerprintServiceDumpProto fingerprint = 3000 [
    optional com.android.server.biometrics.fingerprint.FingerprintServiceDumpProto fingerprint = 3000 [
        (section).type = SECTION_DUMPSYS,
        (section).args = "fingerprint --proto --incident"
    ];
+2 −2
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
 */

syntax = "proto2";
package com.android.server.fingerprint;
package com.android.server.biometrics.fingerprint;

import "frameworks/base/libs/incident/proto/android/privacy.proto";

@@ -46,7 +46,7 @@ message FingerprintUserStatsProto {
    optional PerformanceStatsProto crypto = 4;
}

// A com.android.server.fingerprint.FingerpintService.PerformanceStats object.
// A com.android.server.biometrics.fingerprint.FingerpintService.PerformanceStats object.
message PerformanceStatsProto {
    option (.android.msg_privacy).dest = DEST_AUTOMATIC;

+1 −0
Original line number Diff line number Diff line
@@ -598,6 +598,7 @@
    <protected-broadcast android:name="android.app.action.AFFILIATED_PROFILE_TRANSFER_OWNERSHIP_COMPLETE" />
    <protected-broadcast android:name="android.app.action.DATA_SHARING_RESTRICTION_CHANGED" />
    <protected-broadcast android:name="android.app.action.STATSD_STARTED" />
    <protected-broadcast android:name="com.android.server.biometrics.fingerprint.ACTION_LOCKOUT_RESET" />

    <!-- For IdleController -->
    <protected-broadcast android:name="android.intent.action.DOCK_IDLE" />
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
 * limitations under the License.
 */

package com.android.server.fingerprint;
package com.android.server.biometrics.fingerprint;

import android.content.Context;
import android.hardware.biometrics.fingerprint.V2_1.IBiometricsFingerprint;
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
 * limitations under the License.
 */

package com.android.server.fingerprint;
package com.android.server.biometrics.fingerprint;

import android.Manifest;
import android.content.Context;
Loading