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

Unified Diff: net/socket/stream_socket.cc

Issue 2696403007: Add a multiplier in tracking certificate memory allocation size (Closed)
Patch Set: Created 3 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
Index: net/socket/stream_socket.cc
diff --git a/net/socket/stream_socket.cc b/net/socket/stream_socket.cc
index d435fc3ae579638ca99727036e5689f5943b933d..7199cd8ba1a43720bf3c8c54c7fff3f419b22638 100644
--- a/net/socket/stream_socket.cc
+++ b/net/socket/stream_socket.cc
@@ -99,7 +99,7 @@ void StreamSocket::UseHistory::EmitPreconnectionHistograms() const {
}
StreamSocket::SocketMemoryStats::SocketMemoryStats()
- : total_size(0), buffer_size(0), cert_count(0), serialized_cert_size(0) {}
+ : total_size(0), buffer_size(0), cert_count(0), cert_size(0) {}
StreamSocket::SocketMemoryStats::~SocketMemoryStats() {}

Powered by Google App Engine
This is Rietveld 408576698