No bug - Don't export the ContactService object. DONTBUILD

This commit is contained in:
Reuben Morais 2013-03-29 00:04:45 -07:00
parent 9f67851177
commit b2c419324b

View File

@ -11,8 +11,6 @@ const Cu = Components.utils;
const Cc = Components.classes;
const Ci = Components.interfaces;
this.EXPORTED_SYMBOLS = ["DOMContactManager"];
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
Cu.import("resource://gre/modules/Services.jsm");
Cu.import("resource://gre/modules/ContactDB.jsm");
@ -36,7 +34,7 @@ XPCOMUtils.defineLazyGetter(this, "mRIL", function () {
let myGlobal = this;
this.DOMContactManager = {
let ContactService = {
init: function() {
if (DEBUG) debug("Init");
this._messages = ["Contacts:Find", "Contacts:GetAll", "Contacts:Clear", "Contact:Save",
@ -202,4 +200,4 @@ this.DOMContactManager = {
}
}
DOMContactManager.init();
ContactService.init();