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

Commit fe709369 authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 4384531 from b6835339 to oc-m2-release

Change-Id: I83c9f93c3218615bf28295f20c1b1643443ea9ed
parents 5e84e6e1 b6835339
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -6308,6 +6308,7 @@ package android.app {
  }
  public class VrManager {
    method public void setAndBindVrCompositor(android.content.ComponentName);
    method public void setPersistentVrModeEnabled(boolean);
  }
+1 −0
Original line number Diff line number Diff line
@@ -2192,6 +2192,7 @@ android.util.IntProperty
android.util.Log
android.util.Log$1
android.util.Log$ImmediateLogWriter
android.util.Log$PreloadHolder
android.util.Log$TerribleFailureHandler
android.util.LogPrinter
android.util.LongArray
+1 −0
Original line number Diff line number Diff line
@@ -8,6 +8,7 @@ android.media.MediaPlayer
android.media.SoundPool
android.text.format.Formatter
android.text.Html$HtmlParser
android.util.Log$PreloadHolder
com.android.org.conscrypt.TrustedCertificateStore
org.ccil.cowan.tagsoup.HTMLScanner
sun.security.jca.Providers
+13 −0
Original line number Diff line number Diff line
@@ -114,6 +114,7 @@ import android.view.WindowManager;
import android.view.WindowManagerGlobal;
import android.view.accessibility.AccessibilityEvent;
import android.view.autofill.AutofillManager;
import android.view.autofill.AutofillManager.AutofillClient;
import android.view.autofill.AutofillPopupWindow;
import android.view.autofill.IAutofillWindowPresenter;
import android.widget.AdapterView;
@@ -947,6 +948,18 @@ public class Activity extends ContextThemeWrapper
        return mAutofillManager;
    }

    @Override
    protected void attachBaseContext(Context newBase) {
        super.attachBaseContext(newBase);
        newBase.setAutofillClient(this);
    }

    /** @hide */
    @Override
    public final AutofillClient getAutofillClient() {
        return this;
    }

    /**
     * Called when the activity is starting.  This is where most initialization
     * should go: calling {@link #setContentView(int)} to inflate the
+1 −1
Original line number Diff line number Diff line
@@ -177,7 +177,7 @@ public abstract class ActivityManagerInternal {
    /**
     * Allow DeviceIdleController to tell us about what apps are whitelisted.
     */
    public abstract void setDeviceIdleWhitelist(int[] userAppids, int[] allAppids);
    public abstract void setDeviceIdleWhitelist(int[] appids);

    /**
     * Update information about which app IDs are on the temp whitelist.
Loading