> One question is that if I am implementing my own Android app (Orfox!)
> around the GeckoView, will that cause the favicon not to be loaded, or
> will it still be loaded by some sort of UI-less process?
As far as I understand it, GeckoView doesn't include Fennec's favicon machinery
(and none of the other background services, either). It delegates favicon
handling to your own content delegate:
private void handleLinkFavicon(final JSONObject message) throws
JSONException {
if (mContentDelegate != null) {
int id = message.getInt("tabID");
mContentDelegate.onReceivedFavicon(GeckoView.this, new Browser(id),
message.getString("href"), message.getInt("size"));
}
}
As such, it's up to you whether you load favicons, and how you do so.
_______________________________________________
mobile-firefox-dev mailing list
[email protected]
https://mail.mozilla.org/listinfo/mobile-firefox-dev