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

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

release-request-53526352-7b51-4ab1-a661-632ffc55dd7c-for-git_oc-mr1-release-43...

release-request-53526352-7b51-4ab1-a661-632ffc55dd7c-for-git_oc-mr1-release-4371241 snap-temp-L10900000107789672

Change-Id: I69703d6acfbdf2ae51254013175df1e1e6c1a61c
parents 2bc6acbf 41c78dbd
Loading
Loading
Loading
Loading
+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
+1 −1
Original line number Diff line number Diff line
@@ -5267,7 +5267,7 @@ public final class ActivityThread {
                                final ApplicationInfo aInfo =
                                        sPackageManager.getApplicationInfo(
                                                packageName,
                                                0 /*flags*/,
                                                PackageManager.GET_SHARED_LIBRARY_FILES,
                                                UserHandle.myUserId());

                                if (mActivities.size() > 0) {
+4 −4
Original line number Diff line number Diff line
@@ -1260,12 +1260,12 @@ public class AssistStructure implements Parcelable {
         * <p>Typically used when the view associated with the view is a container for an HTML
         * document.
         *
         * <strong>WARNING:</strong> a {@link android.service.autofill.AutofillService} should only
         * use this domain for autofill purposes when it trusts the app generating it (i.e., the app
         * defined by {@link AssistStructure#getActivityComponent()}).
         * <p><b>Warning:</b> an autofill service cannot trust the value reported by this method
         * without verifing its authenticity&mdash;see the "Web security" section of
         * {@link android.service.autofill.AutofillService} for more details.
         *
         * @return domain-only part of the document. For example, if the full URL is
         * {@code http://my.site/login?user=my_user}, it returns {@code my.site}.
         * {@code https://my.site/login?user=my_user}, it returns {@code my.site}.
         */
        @Nullable public String getWebDomain() {
            return mWebDomain;
+3 −3
Original line number Diff line number Diff line
@@ -392,7 +392,7 @@ public final class Log {
        // and the length of the tag.
        // Note: we implicitly accept possible truncation for Modified-UTF8 differences. It
        //       is too expensive to compute that ahead of time.
        int bufferSize = NoPreloadHolder.LOGGER_ENTRY_MAX_PAYLOAD  // Base.
        int bufferSize = PreloadHolder.LOGGER_ENTRY_MAX_PAYLOAD    // Base.
                - 2                                                // Two terminators.
                - (tag != null ? tag.length() : 0)                 // Tag length.
                - 32;                                              // Some slack.
@@ -429,10 +429,10 @@ public final class Log {
    }

    /**
     * NoPreloadHelper class. Caches the LOGGER_ENTRY_MAX_PAYLOAD value to avoid
     * PreloadHelper class. Caches the LOGGER_ENTRY_MAX_PAYLOAD value to avoid
     * a JNI call during logging.
     */
    static class NoPreloadHolder {
    static class PreloadHolder {
        public final static int LOGGER_ENTRY_MAX_PAYLOAD =
                logger_entry_max_payload_native();
    }
Loading