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

Unified Diff: src/processor/microdump.cc

Issue 2060663002: Server-side workaround to handle overlapping modules. (Closed) Base URL: https://chromium.googlesource.com/breakpad/breakpad.git@master
Patch Set: Fix whitespace. Created 4 years, 6 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 | « src/processor/fast_source_line_resolver_unittest.cc ('k') | src/processor/microdump_processor_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/processor/microdump.cc
diff --git a/src/processor/microdump.cc b/src/processor/microdump.cc
index 9073fe1015931fe6198aa664be895defc2d7bf81..4af62f56f0c6c04978f97ddb65947dcd55eeee8d 100644
--- a/src/processor/microdump.cc
+++ b/src/processor/microdump.cc
@@ -110,6 +110,9 @@ void MicrodumpModules::Add(const CodeModule* module) {
}
}
+void MicrodumpModules::SetEnableModuleShrink(bool is_enabled) {
+ map_.SetEnableShrinkDown(is_enabled);
+}
//
// MicrodumpContext
@@ -262,6 +265,7 @@ Microdump::Microdump(const string& contents)
} else if (os_id == "A") {
system_info_->os = "Android";
system_info_->os_short = "android";
+ modules_->SetEnableModuleShrink(true);
}
// OS line also contains release and version for future use.
« no previous file with comments | « src/processor/fast_source_line_resolver_unittest.cc ('k') | src/processor/microdump_processor_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698