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

Unified Diff: base/trace_event/memory_dump_manager.cc

Issue 1039963003: [tracing] child-process-side impl for inter-process memory dumps (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ipc_3_messages
Patch Set: Add temporary workaround for crbug.com/474973 Created 5 years, 8 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.gyp » ('j') | no next file with comments »
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 ed965fa2b312a8ccc40a0fcd95be2acc485fa8ed..ac79144f9fdb27d7830c1b26c977bd952b1e5824 100644
--- a/base/trace_event/memory_dump_manager.cc
+++ b/base/trace_event/memory_dump_manager.cc
@@ -77,7 +77,10 @@ void MemoryDumpManager::Initialize() {
void MemoryDumpManager::SetDelegate(MemoryDumpManagerDelegate* delegate) {
AutoLock lock(lock_);
- DCHECK(delegate_ == nullptr);
+ // TODO(primiano): The DCHECK below is disabled just temporary (and it is
+ // strongly useful). It should be re-enabled soon as crbug.com/474973 is fixed
+ // (ETA: end of April 2015). Commenting out just to de-entangle CL deps.
+ // DCHECK(delegate_ == nullptr);
delegate_ = delegate;
}
« no previous file with comments | « no previous file | components/tracing.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698