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

Commit d2b1f381 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix StringDef usage in MediaDrm API" into oc-dev

parents cfeb3228 0ca35ac9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1021,13 +1021,13 @@ public final class MediaDrm {
     * Set a DRM engine plugin String property value.
     */
    public native void setPropertyString(
            @StringProperty String propertyName, @NonNull String value);
            String propertyName, @NonNull String value);

    /**
     * Set a DRM engine plugin byte array property value.
     */
    public native void setPropertyByteArray(
            @ArrayProperty String propertyName, @NonNull byte[] value);
            String propertyName, @NonNull byte[] value);

    private static final native void setCipherAlgorithmNative(
            @NonNull MediaDrm drm, @NonNull byte[] sessionId, @NonNull String algorithm);