diff options
author | Gaming4JC <g4jc@bulletmail.org> | 2018-06-21 20:09:48 -0400 |
---|---|---|
committer | Gaming4JC <g4jc@bulletmail.org> | 2018-06-21 20:09:48 -0400 |
commit | e3719ec517645a17224d2f3e5d3320ea77952719 (patch) | |
tree | 326ff9724e7adc8b33ca9f4da0247457686b41a1 /application/basilisk/components/syncedtabs | |
parent | e6f765a27070a6b922742e61d0a14dcc2c18baba (diff) | |
download | UXP-e3719ec517645a17224d2f3e5d3320ea77952719.tar UXP-e3719ec517645a17224d2f3e5d3320ea77952719.tar.gz UXP-e3719ec517645a17224d2f3e5d3320ea77952719.tar.lz UXP-e3719ec517645a17224d2f3e5d3320ea77952719.tar.xz UXP-e3719ec517645a17224d2f3e5d3320ea77952719.zip |
Remove BrowserUITelemetry from Basilisk application
Diffstat (limited to 'application/basilisk/components/syncedtabs')
-rw-r--r-- | application/basilisk/components/syncedtabs/TabListComponent.js | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/application/basilisk/components/syncedtabs/TabListComponent.js b/application/basilisk/components/syncedtabs/TabListComponent.js index d3aace8f9..aa60e4769 100644 --- a/application/basilisk/components/syncedtabs/TabListComponent.js +++ b/application/basilisk/components/syncedtabs/TabListComponent.js @@ -11,8 +11,6 @@ Cu.import("resource://gre/modules/XPCOMUtils.jsm"); let log = Cu.import("resource://gre/modules/Log.jsm", {}) .Log.repository.getLogger("Sync.RemoteTabs"); -XPCOMUtils.defineLazyModuleGetter(this, "BrowserUITelemetry", - "resource:///modules/BrowserUITelemetry.jsm"); XPCOMUtils.defineLazyModuleGetter(this, "PlacesUIUtils", "resource:///modules/PlacesUIUtils.jsm"); @@ -115,7 +113,6 @@ TabListComponent.prototype = { onOpenTab(url, where, params) { this._window.openUILinkIn(url, where, params); - BrowserUITelemetry.countSyncedTabEvent("open", "sidebar"); }, onOpenTabs(urls, where) { @@ -129,7 +126,6 @@ TabListComponent.prototype = { let loadInBackground = where == "tabshifted" ? true : false; this._getChromeWindow(this._window).gBrowser.loadTabs(urls, loadInBackground, false); } - BrowserUITelemetry.countSyncedTabEvent("openmultiple", "sidebar"); }, onCopyTabLocation(url) { |