Bug 1376634 - Fix telemetry reports to report cacheable scripts instead of only small scripts. r=mrbkap

This commit is contained in:
Nicolas B. Pierron 2017-06-29 00:48:55 +00:00
Родитель 9514033aec
Коммит 09b27eb5ff
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -2161,7 +2161,7 @@ ScriptLoader::EvaluateScript(ScriptLoadRequest* aRequest)
TimeStamp start;
if (Telemetry::CanRecordExtended()) {
// Only record telemetry for scripts which are above the threshold.
if (aRequest->mCacheInfo && aRequest->mScriptText.length() < 1024) {
if (aRequest->mCacheInfo && aRequest->mScriptText.length() >= 1024) {
start = TimeStamp::Now();
}
}