gecko/services/datareporting
2013-06-20 15:59:59 -04:00
..
modules-testing
tests Backout 9080f6701733 (bug 852411) for hitting weird xpcshell test harness behavior in multiple local builds 2013-06-14 14:38:29 -07:00
datareporting-prefs.js
DataReporting.manifest
DataReportingService.js Bug 846133 - Store FHR state in a file; r=rnewman 2013-05-10 11:04:48 -07:00
Makefile.in bug 880246: move EXTRA_PP_COMPONENTS to mozbuild (cleanup). r=mshal 2013-06-20 15:59:59 -04:00
moz.build bug 880246: move EXTRA_PP_COMPONENTS to mozbuild (file batch #1) r=mshal 2013-06-14 14:07:19 -04:00
policy.jsm Backout 9080f6701733 (bug 852411) for hitting weird xpcshell test harness behavior in multiple local builds 2013-06-14 14:38:29 -07:00
README.rst Bug 842393 - Documentation for Firefox Health Report; r=rnewman 2013-02-18 16:11:50 -08:00
sessions.jsm Bug 848519 - Part 3: Replace services-common/preferences.js with gre/modules/Preferences.jsm in imports. r=gavin 2013-04-15 12:45:37 -07:00

======================
Data Reporting Service
======================

This directory contains files related to data collection and reporting
within Gecko applications.

The important files in this directory are:

DataReportingService.js
  An XPCOM service that coordinates collection and reporting of data.

policy.jsm
  A module containing the logic for coordinating and driving collection
  and upload of data.

sessions.jsm
  Records Gecko application session history. This is loaded as part of
  the XPCOM service because it needs to capture state from very early in
  the application lifecycle. Bug 841561 tracks implementing this in C++.


There is other code in the tree that collects and uploads data. The
original intent of this directory and XPCOM service was to serve as a
focal point for the coordination of all this activity so that it could
all be done consistently and properly. This vision may or may not be fully
realized.