Chromium Code Reviews| 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..919fa44595fb220dee2dcb27fd626da7191ba964 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 launh the {@link InfoBar}. |
|
Ted C
2014/09/18 00:40:21
want to take another stab at this spelling :-)
bengr
2014/09/18 18:01:15
Done. :)
|
| */ |
| - 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); |
| } |