| Index: components/dom_distiller/android/java/src/org/chromium/components/dom_distiller/core/DomDistillerUrlUtils.java
|
| diff --git a/components/dom_distiller/android/java/src/org/chromium/components/dom_distiller/core/DomDistillerUrlUtils.java b/components/dom_distiller/android/java/src/org/chromium/components/dom_distiller/core/DomDistillerUrlUtils.java
|
| index d82402dd888449bba4b605162054398a3f224c30..1082e8a2207e3ed073d8fb1fcdf2d68746534f77 100644
|
| --- a/components/dom_distiller/android/java/src/org/chromium/components/dom_distiller/core/DomDistillerUrlUtils.java
|
| +++ b/components/dom_distiller/android/java/src/org/chromium/components/dom_distiller/core/DomDistillerUrlUtils.java
|
| @@ -55,9 +55,14 @@ public final class DomDistillerUrlUtils {
|
| return nativeGetIsDistillableJs();
|
| }
|
|
|
| + public static String getValueForKeyInUrl(String url, String key) {
|
| + return nativeGetValueForKeyInUrl(url, key);
|
| + }
|
| +
|
| private static native String nativeGetDistillerViewUrlFromUrl(String scheme, String url);
|
| private static native String nativeGetIsDistillableJs();
|
| private static native String nativeGetOriginalUrlFromDistillerUrl(String viewerUrl);
|
| private static native boolean nativeIsDistilledPage(String url);
|
| private static native boolean nativeIsUrlDistillable(String url);
|
| + private static native String nativeGetValueForKeyInUrl(String url, String key);
|
| }
|
|
|