mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-03 10:33:33 +00:00
404003707f
The OfflineAppCacheHelper was apparently introduced after the Sanitizer had been forked for Fennec and so far nobody bothered to use it there as well. MozReview-Commit-ID: 42Uk5hfvf9y --HG-- rename : browser/modules/offlineAppCache.jsm => toolkit/modules/offlineAppCache.jsm extra : rebase_source : 77e542dbbdfea62b918b89b4c0799be7e3f89ef9
17 lines
542 B
JavaScript
17 lines
542 B
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* 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/. */
|
|
|
|
var EXPORTED_SYMBOLS = ["OfflineAppCacheHelper"];
|
|
|
|
ChromeUtils.import("resource://gre/modules/Services.jsm");
|
|
|
|
var OfflineAppCacheHelper = {
|
|
clear() {
|
|
var appCacheStorage = Services.cache2.appCacheStorage(Services.loadContextInfo.default, null);
|
|
try {
|
|
appCacheStorage.asyncEvictStorage(null);
|
|
} catch (er) {}
|
|
}
|
|
};
|