Chromium Code Reviews| Index: chrome/android/java/src/org/chromium/chrome/browser/EnhancedBookmarksBridge.java |
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/EnhancedBookmarksBridge.java b/chrome/android/java/src/org/chromium/chrome/browser/EnhancedBookmarksBridge.java |
| index 3ff5ecc0ca3f2ab4ef9cada36b302c29e572cba3..493ef1400de5fe76158c4eb9673e40bc95241d8a 100644 |
| --- a/chrome/android/java/src/org/chromium/chrome/browser/EnhancedBookmarksBridge.java |
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/EnhancedBookmarksBridge.java |
| @@ -13,6 +13,7 @@ import org.chromium.base.JNINamespace; |
| import org.chromium.base.ObserverList; |
| import org.chromium.chrome.browser.profiles.Profile; |
| import org.chromium.components.bookmarks.BookmarkId; |
| +import org.chromium.content_public.browser.WebContents; |
| import java.util.ArrayList; |
| import java.util.Arrays; |
| @@ -246,6 +247,14 @@ public final class EnhancedBookmarksBridge { |
| } |
| /** |
| + * Parses the web content of the given tab, and stores salient images to local database. |
|
Kibeom Kim (inactive)
2015/02/09 22:29:44
nit: update comment.
Ian Wen
2015/02/10 00:13:39
Done.
|
| + * @param webContents Contents of the tab that the user is currently in. |
| + */ |
| + public void fetchImageForTab(WebContents webContents) { |
| + nativeFetchImageForTab(mNativeEnhancedBookmarksBridge, webContents); |
| + } |
| + |
| + /** |
| * Get all filters associated with the given bookmark. |
| * |
| * @param bookmark The bookmark to find filters for. |
| @@ -310,6 +319,8 @@ public final class EnhancedBookmarksBridge { |
| private native BookmarkId nativeAddBookmark(long nativeEnhancedBookmarksBridge, |
| BookmarkId parent, int index, String title, String url); |
| private native void nativeSendSearchRequest(long nativeEnhancedBookmarksBridge, String query); |
| - private static native void nativeSalientImageForUrl(long nativeEnhancedBookmarksBridge, |
| + private native void nativeSalientImageForUrl(long nativeEnhancedBookmarksBridge, |
| String url, SalientImageCallback callback); |
| + private native void nativeFetchImageForTab(long nativeEnhancedBookmarksBridge, |
| + WebContents webContents); |
| } |