Home | History | Annotate | Download | only in webui

Lines Matching refs:timers

725   // We maintain two lists - one for counters and one for timers.
726 // Timers actually get stored on both lists.
733 ListValue* timers;
734 if (!root.GetList("timers", &timers)) {
735 timers = new ListValue();
736 root.Set("timers", timers);
798 // Store this on the timers list as well.
799 timers->Append(counter);
854 // Clear the timer list since we stored the data in the timers list
856 for (int index = static_cast<int>(timers->GetSize())-1; index >= 0;
859 timers->Remove(index, &value);