android.webkit.WebIconDatabase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of androidstub Show documentation
Show all versions of androidstub Show documentation
provide android hidden api definition ,helper for android super framework development
package android.webkit;
public class WebIconDatabase
{
public static interface IconListener
{
public abstract void onReceivedIcon(java.lang.String url, android.graphics.Bitmap icon);
}
WebIconDatabase() { throw new RuntimeException("Stub!"); }
public void open(java.lang.String path) { throw new RuntimeException("Stub!"); }
public void close() { throw new RuntimeException("Stub!"); }
public void removeAllIcons() { throw new RuntimeException("Stub!"); }
public void requestIconForPageUrl(java.lang.String url, android.webkit.WebIconDatabase.IconListener listener) { throw new RuntimeException("Stub!"); }
public void retainIconForPageUrl(java.lang.String url) { throw new RuntimeException("Stub!"); }
public void releaseIconForPageUrl(java.lang.String url) { throw new RuntimeException("Stub!"); }
public static android.webkit.WebIconDatabase getInstance() { throw new RuntimeException("Stub!"); }
}