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

Unified Diff: chrome/service/service_ipc_server.cc

Issue 1425533011: Support "shared" histograms between processes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@shmem-alloc
Patch Set: fixed compile problems on non-Windows builds Created 4 years, 11 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: chrome/service/service_ipc_server.cc
diff --git a/chrome/service/service_ipc_server.cc b/chrome/service/service_ipc_server.cc
index 869c4fbcd3de1e59aad2eacb04945590cb48c85e..6183824860042895ec3284fdcc2e1ec389b66535 100644
--- a/chrome/service/service_ipc_server.cc
+++ b/chrome/service/service_ipc_server.cc
@@ -123,7 +123,7 @@ void ServiceIPCServer::OnGetHistograms() {
new base::HistogramDeltaSerialization("ServiceProcess"));
}
std::vector<std::string> deltas;
- histogram_delta_serializer_->PrepareAndSerializeDeltas(&deltas);
+ histogram_delta_serializer_->PrepareAndSerializeDeltas(&deltas, false);
channel_->Send(new ServiceHostMsg_Histograms(deltas));
}

Powered by Google App Engine
This is Rietveld 408576698