Firefox扩展开发firefox4

时间:2010-10-22 13:15:21

标签: firefox firefox-addon xpcom

所以我一直在努力更新用于FF4和Gecko 2的旧扩展,但我遇到了一些问题,我收到的错误是,classID缺失或组件不正确....

是否有其他人遇到类似问题或知道如何解决这个问题?

function jsshellClient() {
  this.classDescription = "sdConnector JavaScript Shell Service";
  this.classID = Components.ID("{54f7f162-35d9-524d-9021-965a3ba86366}");
  this.contractID = "@activestate.com/SDService?type=jsshell;1"
  this._xpcom_categories = [{category: "sd-service", entry: "jsshell"}];
  this.name = "jsshell";
  this.prefs = Components.classes["@mozilla.org/preferences-service;1"]
      .getService(Components.interfaces.nsIPrefService)
      .getBranch("sdconnector.jsshell.");
  this.enabled = this.prefs.getBoolPref("enabled");
  this.port = this.prefs.getIntPref("port");
  this.loopbackOnly = this.prefs.getBoolPref("loopbackOnly");
  this.backlog = this.prefs.getIntPref("backlog");
}
jsshellClient.prototype = new session();
jsshellClient.prototype.constructor = jsshellClient;

在原型上为此调用generateNSGetFactory时,它在FF4的错误控制台中发出错误,抱怨classID。我很确定没有其他东西使用相同的GUID,所以我没有看到问题。

2 个答案:

答案 0 :(得分:2)

Fx4中JS XPCOM组件的一个重要变化是它们现在需要在chrome.manifest中注册,请参阅documentation on the changes的此页面。

答案 1 :(得分:0)

XPCOMUtils使用的特殊属性,如classID,contractID等,必须在Class.prototype上定义,而不是在构造函数中定义,如下所示:https://developer.mozilla.org/en/XPCOMUtils.jsm#Class_declaration

至于另一个问题,你发表了评论,如果它仍然相关,请在提供必要的代码时以不同的问题发布。