Bug 1245580 - Post: document that OnFaviconLoadedListener runs on the UI thread r=liuche

MozReview-Commit-ID: HcsTHl8ttUQ
This commit is contained in:
Andrzej Hunt 2016-02-04 19:22:59 -08:00
parent aaf005f02c
commit 33bea3e9a1

View File

@ -10,5 +10,8 @@ import android.graphics.Bitmap;
* Interface to be implemented by objects wishing to listen for favicon load completion events.
*/
public interface OnFaviconLoadedListener {
/**
* Called when favicon loading is complete. This will be run on the UI thread.
*/
void onFaviconLoaded(String url, String faviconURL, Bitmap favicon);
}