Loading core/java/android/webkit/CallbackProxy.java +1 −1 Original line number Diff line number Diff line Loading @@ -1711,7 +1711,7 @@ class CallbackProxy extends Handler { void onIsSupportedCallback(boolean isSupported) { Message msg = obtainMessage(SEARCHBOX_IS_SUPPORTED_CALLBACK); msg.obj = new Boolean(isSupported); msg.obj = Boolean.valueOf(isSupported); sendMessage(msg); } Loading core/java/android/webkit/GeolocationPermissions.java +1 −1 Original line number Diff line number Diff line Loading @@ -252,7 +252,7 @@ public class GeolocationPermissions { } if (WebViewCore.THREAD_NAME.equals(Thread.currentThread().getName())) { boolean allowed = nativeGetAllowed(origin); callback.onReceiveValue(new Boolean(allowed)); callback.onReceiveValue(Boolean.valueOf(allowed)); } else { Map values = new HashMap<String, Object>(); values.put(ORIGIN, origin); Loading Loading
core/java/android/webkit/CallbackProxy.java +1 −1 Original line number Diff line number Diff line Loading @@ -1711,7 +1711,7 @@ class CallbackProxy extends Handler { void onIsSupportedCallback(boolean isSupported) { Message msg = obtainMessage(SEARCHBOX_IS_SUPPORTED_CALLBACK); msg.obj = new Boolean(isSupported); msg.obj = Boolean.valueOf(isSupported); sendMessage(msg); } Loading
core/java/android/webkit/GeolocationPermissions.java +1 −1 Original line number Diff line number Diff line Loading @@ -252,7 +252,7 @@ public class GeolocationPermissions { } if (WebViewCore.THREAD_NAME.equals(Thread.currentThread().getName())) { boolean allowed = nativeGetAllowed(origin); callback.onReceiveValue(new Boolean(allowed)); callback.onReceiveValue(Boolean.valueOf(allowed)); } else { Map values = new HashMap<String, Object>(); values.put(ORIGIN, origin); Loading