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

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

Issue 11316153: implement input type=color for android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 2 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
« no previous file with comments | « no previous file | chrome/app/generated_resources.grd » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
« no previous file with comments | « no previous file | chrome/app/generated_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698