| Index: chrome/android/java/src/org/chromium/chrome/browser/infobar/InfoBar.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/infobar/InfoBar.java b/chrome/android/java/src/org/chromium/chrome/browser/infobar/InfoBar.java
|
| index c2b44e82fcd2d256e5dc91740d811ecd0caf46c2..f5754c1e2ff019b7b7c7027332f0eb93f9eea012 100644
|
| --- a/chrome/android/java/src/org/chromium/chrome/browser/infobar/InfoBar.java
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/infobar/InfoBar.java
|
| @@ -11,6 +11,7 @@ import android.widget.TextView;
|
|
|
| import org.chromium.base.annotations.CalledByNative;
|
| import org.chromium.chrome.R;
|
| +import org.chromium.chrome.browser.tab.Tab;
|
|
|
| /**
|
| * The base class for all InfoBar classes.
|
| @@ -99,6 +100,11 @@ public abstract class InfoBar implements InfoBarView {
|
| }
|
|
|
| /**
|
| + * Called when the given tab has been reparented.
|
| + */
|
| + public void onTabReparented(Tab tab) { }
|
| +
|
| + /**
|
| * Returns the View shown in this infobar. Only valid after createView() has been called.
|
| */
|
| @Override
|
|
|