Bug 1340115 - Cap the amount of history we import from Chrome. r?gijs draft
authorDão Gottwald <dao@mozilla.com>
Mon, 20 Feb 2017 21:17:44 +0100
changeset 487106 7fc68ef0a22d89304e68c536a7053a5f82e9d832
parent 487087 d0462b0948e0b1147dcce615bddcc46379bdadb2
child 546387 5dafce989bf53b495b47cb87c2f63d3935f4c5c3
push id46137
push userdgottwald@mozilla.com
push dateMon, 20 Feb 2017 20:18:51 +0000
reviewersgijs
bugs1340115
milestone54.0a1
Bug 1340115 - Cap the amount of history we import from Chrome. r?gijs MozReview-Commit-ID: Cj0I02O27PD
browser/app/profile/firefox.js
--- a/browser/app/profile/firefox.js
+++ b/browser/app/profile/firefox.js
@@ -1530,18 +1530,19 @@ pref("browser.esedbreader.loglevel", "Er
 pref("browser.laterrun.enabled", false);
 
 pref("browser.migrate.automigrate.enabled", false);
 // 4 here means the suggestion notification will be automatically
 // hidden the 4th day, so it will actually be shown on 3 different days.
 pref("browser.migrate.automigrate.daysToOfferUndo", 4);
 pref("browser.migrate.automigrate.ui.enabled", true);
 
-pref("browser.migrate.chrome.history.limit", 0);
-pref("browser.migrate.chrome.history.maxAgeInDays", 0);
+// See comments in bug 1340115 on how we got to these numbers.
+pref("browser.migrate.chrome.history.limit", 2000);
+pref("browser.migrate.chrome.history.maxAgeInDays", 180);
 
 // Enable browser frames for use on desktop.  Only exposed to chrome callers.
 pref("dom.mozBrowserFramesEnabled", true);
 
 pref("extensions.pocket.enabled", true);
 
 pref("signon.schemeUpgrades", true);