Bug 721772 - Call ISimpleDOM telemetry accumulation only once. r=tbsaunde

This commit is contained in:
David Bolter 2012-02-04 13:52:52 -05:00
Родитель 713e1bf3c6
Коммит f1df061b80
1 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -56,7 +56,13 @@ namespace statistics {
* Report that ISimpleDOM* has been used.
*/
inline void ISimpleDOMUsed()
{ Telemetry::Accumulate(Telemetry::ISIMPLE_DOM_USAGE, 1); }
{
static bool firstTime = true;
if (firstTime) {
Telemetry::Accumulate(Telemetry::ISIMPLE_DOM_USAGE, 1);
firstTime = false;
}
}
/**
* Report that IAccessibleTable has been used.