| 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 598e299de89a19d860c27f6c72cdb2f0b5c9aa39..0bd1dfe7f635307401022a0a7953dff28031c8b2 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
|
| @@ -26,5 +26,11 @@ public final class DomDistillerUrlUtils {
|
| return nativeGetDistillerViewUrlFromUrl(scheme, url);
|
| }
|
|
|
| + public static boolean isReportableUrl(String scheme, String url) {
|
| + return nativeIsReportableUrl(scheme, url);
|
| + }
|
| +
|
| private static native String nativeGetDistillerViewUrlFromUrl(String scheme, String url);
|
| +
|
| + private static native boolean nativeIsReportableUrl(String scheme, String url);
|
| }
|
|
|