| Index: chrome/android/java/src/org/chromium/chrome/browser/infobar/InfoBarContainer.java
|
| ===================================================================
|
| --- chrome/android/java/src/org/chromium/chrome/browser/infobar/InfoBarContainer.java (revision 284463)
|
| +++ chrome/android/java/src/org/chromium/chrome/browser/infobar/InfoBarContainer.java (working copy)
|
| @@ -369,11 +369,11 @@
|
| }
|
|
|
| // Called by the tab when it has started loading a new page.
|
| - public void onPageStarted(String url) {
|
| + public void onPageStarted() {
|
| LinkedList<InfoBar> barsToRemove = new LinkedList<InfoBar>();
|
|
|
| for (InfoBar infoBar : mInfoBars) {
|
| - if (infoBar.shouldExpire(url)) {
|
| + if (infoBar.shouldExpire()) {
|
| barsToRemove.add(infoBar);
|
| }
|
| }
|
|
|