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

Unified Diff: base/trace_event/memory_dump_provider.h

Issue 1313613002: [tracing] MemoryDumpManager uses TraceConfig to set the periodic dump timers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@test
Patch Set: Fixes. Created 5 years, 4 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: base/trace_event/memory_dump_provider.h
diff --git a/base/trace_event/memory_dump_provider.h b/base/trace_event/memory_dump_provider.h
index 6ab20aa1c543116896450b2bb641fc478c4e8c2a..5d05f5d4e9ad306dca02a7ccf22426f853471f8f 100644
--- a/base/trace_event/memory_dump_provider.h
+++ b/base/trace_event/memory_dump_provider.h
@@ -23,6 +23,10 @@ struct MemoryDumpArgs {
LAST = HIGH // For IPC Macros.
};
+ bool operator==(const MemoryDumpArgs& other) const {
+ return level_of_detail == other.level_of_detail;
+ }
+
LevelOfDetail level_of_detail;
};

Powered by Google App Engine
This is Rietveld 408576698