nsIFaviconDataCallback 编辑

toolkit/components/places/public/nsIFaviconService.idlScriptable Please add a summary to this article. 1.0 66 Introduced Gecko 2.0 Inherits from: nsISupports Last changed in Gecko 2.0 (Firefox 4 / Thunderbird 3.3 / SeaMonkey 2.1)

Method overview

void onComplete(in nsIURI aURI, in unsigned long aDataLen, [const,array,size_is(aDataLen)] in octet aData, in AUTF8String aMimeType);

Methods

onComplete()

Called when the required favicon's information is available.

It's up to the invoking method to state if the callback is always invoked, or called on success only.  Check the method documentation to ensure that.

The caller will receive the most information we can gather on the icon, but it's not guaranteed that all of them will be set. For some method we could not know the favicon's data (it could just be too expensive to get it, or the method does not require we actually have any data). It's up to the caller to check aDataLen > 0 before using any data-related information like mime-type or data itself.

void onComplete(
  in nsIURI aURI,
  in unsigned long aDataLen,
  [const,array,size_is(aDataLen)] in octet aData,
  in AUTF8String aMimeType
);
Parameters
aURI
Receives the "favicon URI" (not the "favicon link URI") associated to the requested page.  This can be null if there is no associated favicon URI, or the callback is notifying a failure.
aDataLen
Size of the icon data in bytes. Notice that a value of 0 does not necessarily mean that we don't have an icon.
aData
Icon data, or an empty array if aDataLen is 0.
aMimeType
Mime type of the icon, or an empty string if aDataLen is 0.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:80 次

字数:2725

最后编辑:7年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文