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

Unified Diff: chrome/browser/service_process/service_process_control.cc

Issue 590373002: Temporarily disables metric reporting from service process on MAC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Mon Sep 22 16:42:37 PDT 2014 Created 6 years, 3 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/service_process/service_process_control.cc
diff --git a/chrome/browser/service_process/service_process_control.cc b/chrome/browser/service_process/service_process_control.cc
index c6eae8471ef531c31cda327e979838a51e61f6af..8b7342c3352a9c94475e3b0c49881c5755da8652 100644
--- a/chrome/browser/service_process/service_process_control.cc
+++ b/chrome/browser/service_process/service_process_control.cc
@@ -281,6 +281,11 @@ bool ServiceProcessControl::GetHistograms(
DCHECK(!histograms_callback.is_null());
histograms_callback_.Reset();
+#if defined(OS_MACOSX)
+ // TODO(vitalybuka): Investigate why it crashes MAC http://crbug.com/406227.
+ return false;
+#endif // OS_MACOSX
+
// If the service process is already running then connect to it.
if (!CheckServiceProcessReady())
return false;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698