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

Unified Diff: components/dom_distiller/android/java/src/org/chromium/components/dom_distiller/core/DomDistillerUrlUtils.java

Issue 464973002: JavaScript that returns whether or not a page is an article (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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: 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 dc31b20d56f1105a3c4dab1e1b50a791e02f393c..75f8ee6b067fd18c86f9468e18658830cf5958ec 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
@@ -49,7 +49,12 @@ public final class DomDistillerUrlUtils {
return nativeIsUrlDistillable(url);
}
+ public static String getIsReadableJs() {
Yaron 2014/08/12 18:55:05 Please rename "readable"->"distillable" throughout
smaslo 2014/08/12 20:42:23 Done.
+ return nativeGetIsReadableJs();
+ }
+
private static native String nativeGetDistillerViewUrlFromUrl(String scheme, String url);
+ private static native String nativeGetIsReadableJs();
private static native String nativeGetOriginalUrlFromDistillerUrl(String viewerUrl);
private static native boolean nativeIsDistilledPage(String url);
private static native boolean nativeIsUrlDistillable(String url);

Powered by Google App Engine
This is Rietveld 408576698