Index: chrome/android/java/src/org/chromium/chrome/browser/contextmenu/ChromeContextMenuItemDelegate.java |
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/contextmenu/ChromeContextMenuItemDelegate.java b/chrome/android/java/src/org/chromium/chrome/browser/contextmenu/ChromeContextMenuItemDelegate.java |
index 607d37459a7d3273668ac381c05ce5ffe74e211b..d12c159b88ca199c9c5cefc8cb24c4f46a417d8c 100644 |
--- a/chrome/android/java/src/org/chromium/chrome/browser/contextmenu/ChromeContextMenuItemDelegate.java |
+++ b/chrome/android/java/src/org/chromium/chrome/browser/contextmenu/ChromeContextMenuItemDelegate.java |
@@ -31,10 +31,11 @@ public interface ChromeContextMenuItemDelegate { |
/** |
* Called when the context menu is trying to start a download. |
+ * @param url Url of the download item. |
* @param isLink Whether or not the download is a link (as opposed to an image/video). |
* @return Whether or not a download should actually be started. |
*/ |
- boolean startDownload(boolean isLink); |
+ boolean startDownload(String url, boolean isLink); |
/** |
* Called when the {@code url} should be opened in a new tab with the same incognito state as |