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

Commit be76c405 authored by Martijn Coenen's avatar Martijn Coenen Committed by Android (Google) Code Review
Browse files

Merge "Make StorageVolume#getOwner a system API." into sc-dev

parents 3878ef82 b3292282
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -312,6 +312,10 @@ package android.os.storage {
    field public static final int APP_IO_BLOCKED_REASON_TRANSCODING = 0; // 0x0
  }

  public final class StorageVolume implements android.os.Parcelable {
    method @NonNull public android.os.UserHandle getOwner();
  }

}

package android.provider {
+9 −2
Original line number Diff line number Diff line
@@ -16,6 +16,8 @@

package android.os.storage;

import static android.annotation.SystemApi.Client.MODULE_LIBRARIES;

import android.annotation.NonNull;
import android.annotation.Nullable;
import android.annotation.SystemApi;
@@ -289,9 +291,14 @@ public final class StorageVolume implements Parcelable {
        return mMaxFileSize;
    }

    /** {@hide} */
    /**
     * Returns the user that owns this volume
     *
     * {@hide}
     */
    @UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.P, trackingBug = 115609023)
    public UserHandle getOwner() {
    @SystemApi(client = MODULE_LIBRARIES)
    public @NonNull UserHandle getOwner() {
        return mOwner;
    }