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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/infobar/DataReductionProxyInfoBarDelegate.java

Issue 581833002: Updated alternative data reduction proxy UI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@flag-for-ssl-experiment
Patch Set: Created 6 years, 3 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: 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);
}

Powered by Google App Engine
This is Rietveld 408576698