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

Unified Diff: sync/engine/traffic_logger.cc

Issue 9732008: [Sync] Store the past 10 traffic records in memory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: For submitting. Created 8 years, 9 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 | « sync/engine/syncer_proto_util.cc ('k') | sync/engine/traffic_recorder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/engine/traffic_logger.cc
diff --git a/sync/engine/traffic_logger.cc b/sync/engine/traffic_logger.cc
index d849e9b11d72c7b6ded86b1f8b501be9c81cf214..1f8ba1d5ed2a40bc4b6682edbeb84fd6cfce69e0 100644
--- a/sync/engine/traffic_logger.cc
+++ b/sync/engine/traffic_logger.cc
@@ -35,16 +35,12 @@ void LogData(const T& data,
void LogClientToServerMessage(const sync_pb::ClientToServerMessage& msg) {
LogData(msg, &ClientToServerMessageToValue,
"******Client To Server Message******");
- // TODO(lipalani) : Store the data (minus specifics)
- // in a circular buffer in memory.
}
void LogClientToServerResponse(
const sync_pb::ClientToServerResponse& response) {
LogData(response, &ClientToServerResponseToValue,
"******Server Response******");
- // TODO(lipalani) : Store the data (minus specifics)
- // in a circular buffer in memory.
}
} // namespace browser_sync
« no previous file with comments | « sync/engine/syncer_proto_util.cc ('k') | sync/engine/traffic_recorder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698