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

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: Addressed comments from marq and tedchoc 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..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);
}

Powered by Google App Engine
This is Rietveld 408576698