Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4877)

Unified Diff: chrome/common/metrics/metrics_log_manager_unittest.cc

Issue 12226045: Linux/ChromeOS Chromium style checker cleanup, chrome/ edition part 1. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/metrics/entropy_provider_unittest.cc ('k') | chrome/common/multi_process_lock_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/metrics/metrics_log_manager_unittest.cc
===================================================================
--- chrome/common/metrics/metrics_log_manager_unittest.cc (revision 181040)
+++ chrome/common/metrics/metrics_log_manager_unittest.cc (working copy)
@@ -21,12 +21,12 @@
class DummyLogSerializer : public MetricsLogManager::LogSerializer {
public:
virtual void SerializeLogs(const std::vector<SerializedLog>& logs,
- MetricsLogManager::LogType log_type) {
+ MetricsLogManager::LogType log_type) OVERRIDE {
persisted_logs_[log_type] = logs;
}
virtual void DeserializeLogs(MetricsLogManager::LogType log_type,
- std::vector<SerializedLog>* logs) {
+ std::vector<SerializedLog>* logs) OVERRIDE {
ASSERT_NE(static_cast<void*>(NULL), logs);
*logs = persisted_logs_[log_type];
}
« no previous file with comments | « chrome/common/metrics/entropy_provider_unittest.cc ('k') | chrome/common/multi_process_lock_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698