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

Commit 975e9651 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Suppress AIDL warnings: untyped-collection" am: dee731ad am:...

Merge "Suppress AIDL warnings: untyped-collection" am: dee731ad am: c6a9f2e8 am: 48cecd59 am: d9f8d109

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1793485

Change-Id: I1c234ba5a3d2797c9724a7325291624e69c35d47
parents 910c9e55 d9f8d109
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -105,12 +105,15 @@ interface IAccountManager {
        String statusToken);

    /* Returns Map<String, Integer> from package name to visibility with all values stored for given account */
    @SuppressWarnings(value = {"untyped-collection"})
    Map getPackagesAndVisibilityForAccount(in Account account);
    @SuppressWarnings(value = {"untyped-collection"})
    boolean addAccountExplicitlyWithVisibility(in Account account, String password, in Bundle extras,
            in Map visibility, in String opPackageName);
    boolean setAccountVisibility(in Account a, in String packageName, int newVisibility);
    int getAccountVisibility(in Account a, in String packageName);
    /* Type may be null returns Map <Account, Integer>*/
    @SuppressWarnings(value = {"untyped-collection"})
    Map getAccountsAndVisibilityForPackage(in String packageName, in String accountType);

    void registerAccountListener(in String[] accountTypes, String opPackageName);