Skip to content

Commit

Permalink
Removed deprectaed Components.utils
Browse files Browse the repository at this point in the history
Replaced with new function ChromeUtils
  • Loading branch information
Garoe Dorta committed Apr 30, 2018
1 parent d5ad1e8 commit fc18ca6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bootstrap.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const Cu = Components.utils;
const Cu = ChromeUtils;
const Cc = Components.classes;
const Ci = Components.interfaces;

Expand Down
2 changes: 1 addition & 1 deletion content/overlay.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

var EXPORTED_SYMBOLS = ["TKPManager"];

const Cu = Components.utils;
const Cu = ChromeUtils;
const Ci = Components.interfaces;
const Cc = Components.classes;

Expand Down
2 changes: 1 addition & 1 deletion content/ui.jsm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

var EXPORTED_SYMBOLS = ["Ui"];

const Cu = Components.utils;
const Cu = ChromeUtils;
const Ci = Components.interfaces;
const Cc = Components.classes;

Expand Down

0 comments on commit fc18ca6

Please sign in to comment.