Backed out changeset d44fe4ae02fe (bug 1414965) for unexpected connections in ts_paint_heavy. r=backout

This commit is contained in:
Sebastian Hengst 2017-11-07 02:58:35 +02:00
parent c7c9de355a
commit 5ce0f531de

View File

@ -1745,7 +1745,7 @@ BrowserGlue.prototype = {
// eslint-disable-next-line complexity
_migrateUI: function BG__migrateUI() {
const UI_VERSION = 58;
const UI_VERSION = 57;
const BROWSER_DOCURL = "chrome://browser/content/browser.xul";
let currentUIVersion;
@ -2170,13 +2170,6 @@ BrowserGlue.prototype = {
}
}
if (currentUIVersion < 58) {
// With Firefox 57, we are doing a one time reset of the geo prefs due to bug 1413652
Services.prefs.clearUserPref("browser.search.countryCode");
Services.prefs.clearUserPref("browser.search.region");
Services.prefs.clearUserPref("browser.search.isUS");
}
// Update the migration version.
Services.prefs.setIntPref("browser.migration.version", UI_VERSION);
},