Index: chrome/android/java/src/org/chromium/chrome/browser/TabBase.java |
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/TabBase.java b/chrome/android/java/src/org/chromium/chrome/browser/TabBase.java |
index 5fd0d38a0a5de78897497d82df2e01305148060b..c0a3770b1cf9e2d5d3c8c3376c3d8e835a88bdd4 100644 |
--- a/chrome/android/java/src/org/chromium/chrome/browser/TabBase.java |
+++ b/chrome/android/java/src/org/chromium/chrome/browser/TabBase.java |
@@ -517,22 +517,6 @@ public abstract class TabBase implements NavigationClient { |
} |
/** |
- * Launches all currently blocked popups that were spawned by the content of this tab. |
- */ |
- protected void launchBlockedPopups() { |
- assert mContentViewCore != null; |
- |
- nativeLaunchBlockedPopups(mNativeTabAndroid); |
- } |
- |
- /** |
- * Called when the number of blocked popups has changed. |
- * @param numPopups The current number of blocked popups. |
- */ |
- @CalledByNative |
- protected void onBlockedPopupsStateChanged(int numPopups) { } |
- |
- /** |
* Called when the favicon of the content this tab represents changes. |
*/ |
@CalledByNative |
@@ -610,6 +594,5 @@ public abstract class TabBase implements NavigationClient { |
ContentViewCore contentViewCore, ChromeWebContentsDelegateAndroid delegate); |
private native void nativeDestroyWebContents(int nativeTabAndroid, boolean deleteNative); |
private native Profile nativeGetProfileAndroid(int nativeTabAndroid); |
- private native void nativeLaunchBlockedPopups(int nativeTabAndroid); |
private native int nativeGetSecurityLevel(int nativeTabAndroid); |
} |