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

Commit 9999c1d9 authored by Ben Murdoch's avatar Ben Murdoch
Browse files

Add a System.Secure setting for the Autofill server URL.

The Autofill server is now configured as a system setting. Add
that setting and a method to be called over JNI from the chrome
stack to retrieve it.

See also external/chromium change I3a22ae42402f52207eee2d0d9df64700cb7c9f45

Bug: 4515820
Change-Id: I0aa85c5bef834b1120baaabdc2dd2e4e607a63b6
parent edf01782
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -3853,6 +3853,10 @@ public final class Settings {
        /** Timeout in milliseconds to wait for NTP server. {@hide} */
        public static final String NTP_TIMEOUT = "ntp_timeout";

        /** Autofill server address (Used in WebView/browser). {@hide} */
        public static final String WEB_AUTOFILL_QUERY_URL =
            "web_autofill_query_url";

        /**
         * @hide
         */
+12 −3
Original line number Diff line number Diff line
@@ -18,6 +18,7 @@ package android.webkit;

import android.content.Context;
import android.net.Uri;
import android.provider.Settings;
import android.util.Log;

import java.io.InputStream;
@@ -38,7 +39,7 @@ class JniUtil {

    private static boolean initialized = false;

    private static void checkIntialized() {
    private static void checkInitialized() {
        if (!initialized) {
            throw new IllegalStateException("Call CookieSyncManager::createInstance() or create a webview before using this class");
        }
@@ -63,7 +64,7 @@ class JniUtil {
     * @return String The application's database directory
     */
    private static synchronized String getDatabaseDirectory() {
        checkIntialized();
        checkInitialized();

        if (sDatabaseDirectory == null)
            sDatabaseDirectory = sContext.getDatabasePath("dummy").getParent();
@@ -76,7 +77,7 @@ class JniUtil {
     * @return String The application's cache directory
     */
    private static synchronized String getCacheDirectory() {
        checkIntialized();
        checkInitialized();

        if (sCacheDirectory == null)
            sCacheDirectory = sContext.getCacheDir().getAbsolutePath();
@@ -166,5 +167,13 @@ class JniUtil {
        return sUseChromiumHttpStack;
    }

    private static synchronized String getAutofillQueryUrl() {
        checkInitialized();
        // If the device has not checked in it won't have pulled down the system setting for the
        // Autofill Url. In that case we will not make autofill server requests.
        return Settings.Secure.getString(sContext.getContentResolver(),
                Settings.Secure.WEB_AUTOFILL_QUERY_URL);
    }

    private static native boolean nativeUseChromiumHttpStack();
}