Home
last modified time | relevance | path

Searched refs:TimeMarker (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/chrome/browser/chromeos/
Dboot_times_loader.h110 class TimeMarker {
112 TimeMarker(const std::string& name, bool send_to_uma) in TimeMarker() function
121 bool operator<(const TimeMarker& other) const {
126 friend class std::vector<TimeMarker>;
165 std::vector<TimeMarker> login_times);
166 static void AddMarker(std::vector<TimeMarker>* vector, TimeMarker marker);
181 std::vector<TimeMarker> login_time_markers_;
182 std::vector<TimeMarker> logout_time_markers_;
Dboot_times_loader.cc259 std::vector<TimeMarker> login_times) { in WriteTimes()
284 TimeMarker tm = login_times[i]; in WriteTimes()
445 AddMarker(&login_time_markers_, TimeMarker(marker_name, send_to_uma)); in AddLoginTimeMarker()
450 AddMarker(&logout_time_markers_, TimeMarker(marker_name, send_to_uma)); in AddLogoutTimeMarker()
454 void BootTimesLoader::AddMarker(std::vector<TimeMarker>* vector, in AddMarker()
455 TimeMarker marker) in AddMarker()