michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: "use strict"; michael@0: michael@0: this.EXPORTED_SYMBOLS = [ michael@0: "HealthReporter", michael@0: "AddonsProvider", michael@0: "AppInfoProvider", michael@0: "CrashesProvider", michael@0: "HealthReportProvider", michael@0: "Metrics", michael@0: "PlacesProvider", michael@0: "ProfileMetadataProvider", michael@0: "SearchesProvider", michael@0: "SessionsProvider", michael@0: "SysInfoProvider", michael@0: ]; michael@0: michael@0: const {classes: Cc, interfaces: Ci, utils: Cu} = Components; michael@0: michael@0: const MILLISECONDS_PER_DAY = 24 * 60 * 60 * 1000; michael@0: michael@0: // We concatenate the JSMs together to eliminate compartment overhead. michael@0: // This is a giant hack until compartment overhead is no longer an michael@0: // issue. michael@0: #define MERGED_COMPARTMENT michael@0: michael@0: #include ../common/async.js michael@0: ; michael@0: #include ../common/bagheeraclient.js michael@0: ; michael@0: #include ../metrics/Metrics.jsm michael@0: ; michael@0: #include healthreporter.jsm michael@0: ; michael@0: #include profile.jsm michael@0: ; michael@0: #include providers.jsm michael@0: ; michael@0: