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

Unified Diff: components/dom_distiller/android/java/src/org/chromium/components/dom_distiller/content/DistillablePageUtils.java

Issue 1391893003: NOT FOR REVIEW: Aura on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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/content/DistillablePageUtils.java
diff --git a/components/dom_distiller/android/java/src/org/chromium/components/dom_distiller/content/DistillablePageUtils.java b/components/dom_distiller/android/java/src/org/chromium/components/dom_distiller/content/DistillablePageUtils.java
index 0f7c794f5c0563b8ade4b8b985593851727e547e..4d90919d7c35dda786721724b82891aff6676c0c 100644
--- a/components/dom_distiller/android/java/src/org/chromium/components/dom_distiller/content/DistillablePageUtils.java
+++ b/components/dom_distiller/android/java/src/org/chromium/components/dom_distiller/content/DistillablePageUtils.java
@@ -4,7 +4,7 @@
package org.chromium.components.dom_distiller.content;
-import org.chromium.base.annotations.CalledByNative;
+//import org.chromium.base.annotations.CalledByNative;
import org.chromium.base.annotations.JNINamespace;
import org.chromium.content_public.browser.WebContents;
@@ -25,11 +25,13 @@ public final class DistillablePageUtils {
nativeIsPageDistillable(webContents, isMobileOptimized, callback);
}
+ /*
@CalledByNative
private static void callOnIsPageDistillableResult(
PageDistillableCallback callback, boolean isDistillable) {
callback.onIsPageDistillableResult(isDistillable);
}
+ */
private static native void nativeIsPageDistillable(
WebContents webContents, boolean isMobileOptimized, PageDistillableCallback callback);

Powered by Google App Engine
This is Rietveld 408576698