1 /* See license.txt for terms of usage */
  2 
  3 define([], function() {
  4 
  5 // ********************************************************************************************* //
  6 // Constants
  7 
  8 var FBS = {};
  9 
 10 // ********************************************************************************************* //
 11 
 12 try
 13 {
 14     // xxxHonza: The entire firebug-service implementation should be here
 15     Components.utils["import"]("resource://firebug/firebug-service.js", FBS);
 16 }
 17 catch (err)
 18 {
 19 }
 20 
 21 // ********************************************************************************************* //
 22 
 23 return FBS.fbs;
 24 
 25 // ********************************************************************************************* //
 26 });
 27