| 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..48f92eaad4ff904446d904fe6cd729b88c93fb57 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 isUrlReportable(String scheme, String url) {
|
| + return nativeIsUrlReportable(scheme, url);
|
| + }
|
| +
|
| private static native String nativeGetDistillerViewUrlFromUrl(String scheme, String url);
|
| +
|
| + private static native boolean nativeIsUrlReportable(String scheme, String url);
|
| }
|
|
|