Home | History | Annotate | Download | only in browser

Lines Matching refs:timers

690   // We maintain two lists - one for counters and one for timers.
691 // Timers actually get stored on both lists.
698 ListValue* timers;
699 if (!root.GetList("timers", &timers)) {
700 timers = new ListValue();
701 root.Set("timers", timers);
763 // Store this on the timers list as well.
764 timers->Append(counter);
816 // Clear the timer list since we stored the data in the timers list as well.
817 for (int index = static_cast<int>(timers->GetSize())-1; index >= 0;
820 timers->Remove(index, &value);