Bug 951157 - Clear seer DB when clearing history r=blassey

This commit is contained in:
Mark Finkle 2013-12-17 20:32:18 -05:00
parent bda0f2b765
commit 3e54a323f3

View File

@ -153,6 +153,11 @@ Sanitizer.prototype = {
Services.prefs.clearUserPref("general.open_location.last_url");
}
catch (e) { }
try {
var seer = Cc["@mozilla.org/network/seer;1"].getService(Ci.nsINetworkSeer);
seer.reset();
} catch (e) { }
},
get canClear()