Index: chrome/service/service_ipc_server.cc |
diff --git a/chrome/service/service_ipc_server.cc b/chrome/service/service_ipc_server.cc |
index 869c4fbcd3de1e59aad2eacb04945590cb48c85e..4d6e565195ced818c869c658fd1a8352708620f1 100644 |
--- a/chrome/service/service_ipc_server.cc |
+++ b/chrome/service/service_ipc_server.cc |
@@ -123,7 +123,10 @@ void ServiceIPCServer::OnGetHistograms() { |
new base::HistogramDeltaSerialization("ServiceProcess")); |
} |
std::vector<std::string> deltas; |
- histogram_delta_serializer_->PrepareAndSerializeDeltas(&deltas); |
+ // "false" to SPerpareAndSerializeDeltas() indicates to *not* include |
Alexei Svitkine (slow)
2016/01/22 16:15:16
Nit: SPerpareAndSerializeDeltas() -> PerpareAndSer
bcwhite
2016/01/22 17:17:48
Done.
|
+ // histograms held in persistent storage on the assumption that they will be |
+ // visible to the recipient through other means. |
+ histogram_delta_serializer_->PrepareAndSerializeDeltas(&deltas, false); |
channel_->Send(new ServiceHostMsg_Histograms(deltas)); |
} |