Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1533)

Unified Diff: android_webview/java/src/org/chromium/android_webview/AwContentsStatics.java

Issue 1907703002: Fix a nasty scroll bug for Chrome Now-on-tap feature. Also combine the (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: further cleanup Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: android_webview/java/src/org/chromium/android_webview/AwContentsStatics.java
diff --git a/android_webview/java/src/org/chromium/android_webview/AwContentsStatics.java b/android_webview/java/src/org/chromium/android_webview/AwContentsStatics.java
index 9e89add9ad054a3ee26103e6a0ab6f99154dfdda..e21739779261b4bac0db0e54ff83d8dff74c4a3c 100644
--- a/android_webview/java/src/org/chromium/android_webview/AwContentsStatics.java
+++ b/android_webview/java/src/org/chromium/android_webview/AwContentsStatics.java
@@ -86,10 +86,6 @@ public class AwContentsStatics {
nativeSetLegacyCacheRemovalDelayForTest(timeoutMs);
}
- public static String getProductVersion() {
- return nativeGetProductVersion();
- }
-
public static void setServiceWorkerIoThreadClient(AwContentsIoThreadClient ioThreadClient,
AwBrowserContext browserContext) {
nativeSetServiceWorkerIoThreadClient(ioThreadClient, browserContext);
@@ -103,7 +99,6 @@ public class AwContentsStatics {
private static native void nativeSetDataReductionProxyEnabled(boolean enabled);
private static native String nativeGetUnreachableWebDataUrl();
private static native void nativeSetLegacyCacheRemovalDelayForTest(long timeoutMs);
- private static native String nativeGetProductVersion();
private static native void nativeSetServiceWorkerIoThreadClient(
AwContentsIoThreadClient ioThreadClient, AwBrowserContext browserContext);
}

Powered by Google App Engine
This is Rietveld 408576698