Commit a66a6955 authored by Pier Angelo Vendrame's avatar Pier Angelo Vendrame 🎃
Browse files

fixup! TB 42669: [android] Use custom no-op app-services

TB 45009: Rebased onto 154.0a1.

Added new __NOOPs.
parent f9c77068
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -33,6 +33,7 @@ internal fun FirefoxLabsEnrollStatus.toEnrollmentResult(): EnrollmentResult = wh
    FirefoxLabsEnrollStatus.NOT_FIREFOX_LABS_OPT_IN -> EnrollmentResult.Invalid
    FirefoxLabsEnrollStatus.FEATURE_CONFLICT -> EnrollmentResult.Failed
    FirefoxLabsEnrollStatus.ERROR -> EnrollmentResult.Failed
    FirefoxLabsEnrollStatus.__NOOP -> EnrollmentResult.Invalid
}

/**
@@ -44,4 +45,5 @@ internal fun FirefoxLabsUnenrollStatus.toEnrollmentResult(): EnrollmentResult =
    FirefoxLabsUnenrollStatus.NO_EXPERIMENT -> EnrollmentResult.Invalid
    FirefoxLabsUnenrollStatus.NOT_FIREFOX_LABS_OPT_IN -> EnrollmentResult.Invalid
    FirefoxLabsUnenrollStatus.ERROR -> EnrollmentResult.Failed
    FirefoxLabsUnenrollStatus.__NOOP -> EnrollmentResult.Invalid
}