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

Unified Diff: base/trace_event/memory_dump_manager.cc

Issue 1584583003: Remove --no-sandbox flag from command line for telemetry (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@sandbox
Patch Set: More fixes. 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
« no previous file with comments | « no previous file | components/tracing/docs/memory_infra.md » ('j') | components/tracing/docs/memory_infra.md » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/trace_event/memory_dump_manager.cc
diff --git a/base/trace_event/memory_dump_manager.cc b/base/trace_event/memory_dump_manager.cc
index eb82ac227919946154dc650a6faeef087a773718..f9361130fc844e632ac87e8d2c23fb77aaf217af 100644
--- a/base/trace_event/memory_dump_manager.cc
+++ b/base/trace_event/memory_dump_manager.cc
@@ -398,9 +398,7 @@ void MemoryDumpManager::ContinueAsyncProcessDump(
if (!mdpinfo->disabled) {
if (mdpinfo->consecutive_failures >= kMaxConsecutiveFailuresCount) {
mdpinfo->disabled = true;
- disabled_reason =
- "Dump failure, possibly related with sandboxing (crbug.com/461788)."
- " Try --no-sandbox.";
+ disabled_reason = "Dump failed multiple times consecutively.";
} else if (post_task_failed && mdpinfo->task_runner) {
// Don't disable unbound dump providers. The utility thread is normally
// shutdown when disabling the trace and getting here in this case is
« no previous file with comments | « no previous file | components/tracing/docs/memory_infra.md » ('j') | components/tracing/docs/memory_infra.md » ('J')

Powered by Google App Engine
This is Rietveld 408576698