Index: chrome/android/java/src/org/chromium/chrome/browser/infobar/DataReductionProxyInfoBarDelegate.java |
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/infobar/DataReductionProxyInfoBarDelegate.java b/chrome/android/java/src/org/chromium/chrome/browser/infobar/DataReductionProxyInfoBarDelegate.java |
index 4cbbd6ff6ac373290524d8a4434c2410f0e1a218..9ae5ac5f50e1589862e174ef0f5b40329ea2e8ed 100644 |
--- a/chrome/android/java/src/org/chromium/chrome/browser/infobar/DataReductionProxyInfoBarDelegate.java |
+++ b/chrome/android/java/src/org/chromium/chrome/browser/infobar/DataReductionProxyInfoBarDelegate.java |
@@ -14,10 +14,10 @@ import org.chromium.content_public.browser.WebContents; |
public class DataReductionProxyInfoBarDelegate { |
/** |
* Launches the {@link InfoBar}. |
- * @param webContents The {@link WebContents} in which to laucnh the {@link InfoBar}. |
+ * @param webContents The {@link WebContents} in which to launch the {@link InfoBar}. |
*/ |
- static void launch(WebContents webContents) { |
- nativeLaunch(webContents); |
+ static void launch(WebContents webContents, String linkUrl) { |
+ nativeLaunch(webContents, linkUrl); |
} |
private DataReductionProxyInfoBarDelegate() { |
@@ -43,5 +43,5 @@ public class DataReductionProxyInfoBarDelegate { |
return infoBar; |
} |
- protected static native void nativeLaunch(WebContents webContents); |
+ protected static native void nativeLaunch(WebContents webContents, String linkUrl); |
} |