diff options
author | Gaming4JC <g4jc@bulletmail.org> | 2018-08-19 18:18:36 -0400 |
---|---|---|
committer | Gaming4JC <g4jc@bulletmail.org> | 2018-08-19 18:18:36 -0400 |
commit | f3ea4b9d7ac88193b0669e12a31a20685c89691b (patch) | |
tree | 36c3c1770d3a2e636e34259975401014e923ddf1 /application/basilisk/components/places | |
parent | f36ad080c6f2f13012180dc0ac566893be9020ad (diff) | |
download | UXP-f3ea4b9d7ac88193b0669e12a31a20685c89691b.tar UXP-f3ea4b9d7ac88193b0669e12a31a20685c89691b.tar.gz UXP-f3ea4b9d7ac88193b0669e12a31a20685c89691b.tar.lz UXP-f3ea4b9d7ac88193b0669e12a31a20685c89691b.tar.xz UXP-f3ea4b9d7ac88193b0669e12a31a20685c89691b.zip |
Basilisk: Remove TelemetryStopwatch
Diffstat (limited to 'application/basilisk/components/places')
-rw-r--r-- | application/basilisk/components/places/content/history-panel.js | 7 | ||||
-rw-r--r-- | application/basilisk/components/places/content/places.js | 3 |
2 files changed, 0 insertions, 10 deletions
diff --git a/application/basilisk/components/places/content/history-panel.js b/application/basilisk/components/places/content/history-panel.js index 20dbbb5bd..65f00e93b 100644 --- a/application/basilisk/components/places/content/history-panel.js +++ b/application/basilisk/components/places/content/history-panel.js @@ -3,8 +3,6 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -Components.utils.import("resource://gre/modules/TelemetryStopwatch.jsm"); - var gHistoryTree; var gSearchBox; var gHistoryGrouping = ""; @@ -81,16 +79,11 @@ function searchHistory(aInput) options.resultType = resultType; options.includeHidden = !!aInput; - if (gHistoryGrouping == "lastvisited") - this.TelemetryStopwatch.start("HISTORY_LASTVISITED_TREE_QUERY_TIME_MS"); - // call load() on the tree manually // instead of setting the place attribute in history-panel.xul // otherwise, we will end up calling load() twice gHistoryTree.load([query], options); - if (gHistoryGrouping == "lastvisited") - this.TelemetryStopwatch.finish("HISTORY_LASTVISITED_TREE_QUERY_TIME_MS"); } window.addEventListener("SidebarFocused", diff --git a/application/basilisk/components/places/content/places.js b/application/basilisk/components/places/content/places.js index aa43b20e6..375c3de17 100644 --- a/application/basilisk/components/places/content/places.js +++ b/application/basilisk/components/places/content/places.js @@ -5,7 +5,6 @@ Components.utils.import("resource://gre/modules/AppConstants.jsm"); Components.utils.import("resource://gre/modules/XPCOMUtils.jsm"); -Components.utils.import("resource://gre/modules/TelemetryStopwatch.jsm"); XPCOMUtils.defineLazyModuleGetter(this, "MigrationUtils", "resource:///modules/MigrationUtils.jsm"); XPCOMUtils.defineLazyModuleGetter(this, "Task", @@ -810,9 +809,7 @@ var PlacesSearchBox = { currentView.load([query], options); } else { - TelemetryStopwatch.start(HISTORY_LIBRARY_SEARCH_TELEMETRY); currentView.applyFilter(filterString, null, true); - TelemetryStopwatch.finish(HISTORY_LIBRARY_SEARCH_TELEMETRY); } break; case "downloads": |