Chromium Code Reviews| Index: components/offline_pages/offline_event_logger.cc | 
| diff --git a/components/offline_pages/offline_event_logger.cc b/components/offline_pages/offline_event_logger.cc | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..29635c67cb2e8c04f08f1fa629b613961e04faa3 | 
| --- /dev/null | 
| +++ b/components/offline_pages/offline_event_logger.cc | 
| @@ -0,0 +1,58 @@ | 
| +// Copyright 2016 The Chromium Authors. All rights reserved. | 
| +// Use of this source code is governed by a BSD-style license that can be | 
| +// found in the LICENSE file. | 
| + | 
| +#include "base/strings/stringprintf.h" | 
| +#include "base/time/time.h" | 
| +#include "components/offline_pages/offline_event_logger.h" | 
| + | 
| +namespace offline_pages { | 
| + | 
| +OfflineEventLogger::OfflineEventLogger() | 
| + : activities_(kMaxLogCount), is_logging_(false) {} | 
| + | 
| +OfflineEventLogger::~OfflineEventLogger() {} | 
| + | 
| +void OfflineEventLogger::SetIsLogging(bool is_logging) { | 
| + is_logging_ = is_logging; | 
| +} | 
| + | 
| +bool OfflineEventLogger::GetIsLogging() { | 
| + return is_logging_; | 
| +} | 
| + | 
| +void OfflineEventLogger::Clear() { | 
| + activities_.clear(); | 
| +} | 
| + | 
| +void OfflineEventLogger::RecordActivity(const std::string& activity) { | 
| 
 
dewittj
2016/06/24 21:16:41
any chance for OfflineEventLoggerTest?
 
chili
2016/06/24 21:28:25
I feel like this method (and class) is adequately
 
 | 
| + if (!is_logging_) { | 
| + return; | 
| + } | 
| + if (activities_.size() > kMaxLogCount) | 
| + activities_.pop_back(); | 
| + | 
| + base::Time::Exploded current_time; | 
| + base::Time::Now().LocalExplode(¤t_time); | 
| + | 
| + std::string date_string = base::StringPrintf( | 
| + "%d %02d %02d %02d:%02d:%02d", | 
| + current_time.year, | 
| + current_time.month, | 
| + current_time.day_of_month, | 
| + current_time.hour, | 
| + current_time.minute, | 
| + current_time.second); | 
| + | 
| + activities_.push_front(date_string + ": " + activity); | 
| +} | 
| + | 
| +void OfflineEventLogger::GetLogs(std::vector<std::string>* records) { | 
| 
 
dewittj
2016/06/24 21:16:41
nit: add DCHECK(records)
 
chili
2016/06/24 21:28:25
Done.
 
 | 
| + for (std::deque<std::string>::iterator it = activities_.begin(); | 
| + it != activities_.end(); it++) { | 
| + if (!it->empty()) | 
| + records->push_back(*it); | 
| + } | 
| +} | 
| + | 
| +} // namespace offline_pages |