2013-01-06 12:13:19 -08:00
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
2013-01-27 11:26:48 -08:00
|
|
|
#ifndef MERGED_COMPARTMENT
|
|
|
|
|
2013-01-06 12:13:19 -08:00
|
|
|
this.EXPORTED_SYMBOLS = ["Metrics"];
|
|
|
|
|
2013-03-11 14:12:24 -07:00
|
|
|
const {classes: Cc, interfaces: Ci, utils: Cu} = Components;
|
2013-01-06 12:13:19 -08:00
|
|
|
|
2013-01-27 11:26:48 -08:00
|
|
|
const MILLISECONDS_PER_DAY = 24 * 60 * 60 * 1000;
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// We concatenate the JSMs together to eliminate compartment overhead.
|
|
|
|
// This is a giant hack until compartment overhead is no longer an
|
|
|
|
// issue.
|
|
|
|
#define MERGED_COMPARTMENT
|
2013-01-06 12:13:19 -08:00
|
|
|
|
2013-03-07 05:06:46 -08:00
|
|
|
#include providermanager.jsm
|
2013-01-27 11:26:48 -08:00
|
|
|
;
|
|
|
|
#include dataprovider.jsm
|
|
|
|
;
|
|
|
|
#include storage.jsm
|
|
|
|
;
|
2013-01-06 12:13:19 -08:00
|
|
|
|
|
|
|
this.Metrics = {
|
2013-03-07 05:06:46 -08:00
|
|
|
ProviderManager: ProviderManager,
|
2013-01-18 22:35:07 -08:00
|
|
|
DailyValues: DailyValues,
|
2013-01-06 12:13:19 -08:00
|
|
|
Measurement: Measurement,
|
|
|
|
Provider: Provider,
|
|
|
|
Storage: MetricsStorageBackend,
|
|
|
|
dateToDays: dateToDays,
|
|
|
|
daysToDate: daysToDate,
|
|
|
|
};
|
|
|
|
|