зеркало из https://github.com/mozilla/gecko-dev.git
Bug 721772 - Call ISimpleDOM telemetry accumulation only once. r=tbsaunde
This commit is contained in:
Родитель
713e1bf3c6
Коммит
f1df061b80
|
@ -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.
|
||||
|
|
Загрузка…
Ссылка в новой задаче