Home
last modified time | relevance | path

Searched refs:current_log_ (Results 1 – 3 of 3) sorted by relevance

/external/chromium/chrome/browser/metrics/
Dmetrics_service.cc582 DCHECK(current_log_); in Observe()
590 current_log_->RecordUserAction(*Details<const char*>(details).ptr()); in Observe()
642 MetricsLog* current_log = current_log_->AsMetricsLog(); in Observe()
662 if (current_log_) in Observe()
663 DVLOG(1) << "METRICS: NUMBER OF EVENTS = " << current_log_->num_events(); in Observe()
846 if (current_log_) in StartRecording()
849 current_log_ = new MetricsLog(client_id_, session_id_); in StartRecording()
865 if (!current_log_) in StopRecording()
868 current_log_->set_hardware_class(hardware_class_); // Adds to ongoing logs. in StopRecording()
872 if (current_log_->num_events() > kEventLimit) { in StopRecording()
[all …]
/external/chromium/chrome/common/
Dmetrics_helpers.cc422 current_log_(NULL) { in MetricsServiceBase()
430 if (current_log_) { in ~MetricsServiceBase()
431 delete current_log_; in ~MetricsServiceBase()
432 current_log_ = NULL; in ~MetricsServiceBase()
484 DCHECK(current_log_); in RecordCurrentHistograms()
491 current_log_->RecordHistogramDelta(histogram, snapshot); in TransmitHistogramDelta()
Dmetrics_helpers.h261 MetricsLogBase* current_log_; variable