bug 313956: expand installer .exe contents to make complete mar. r=ted.
[gecko.git] / toolkit / components / places / utils.js
blob1133cb772e1b7e47bef1240ff5037bb4f2803094
1 /*
2  * This is a mock file pointing to PlacesUtils.jsm for add-ons backwards
3  * compatibility.
4  *
5  * If you are importing this file, you should instead import PlacesUtils.jsm.
6  * If you need to support different versions of toolkit, then you can use the
7  * following code to import PlacesUtils in your scope.
8  *
9  * Try {
10  *   Components.utils.import("resource://gre/modules/PlacesUtils.jsm");
11  * } catch (ex) {
12  *   Components.utils.import("resource://gre/modules/utils.js");
13  * }
14  *
15  */
17 var EXPORTED_SYMBOLS = ["PlacesUtils"];
19 Components.utils.reportError('An add-on is importing utils.js module, this file is deprecated, PlacesUtils.jsm should be used instead. Please notify add-on author of this problem.');
21 Components.utils.import("resource://gre/modules/PlacesUtils.jsm");