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

Unified Diff: src/processor/minidump.cc

Issue 1287803002: Allow Print() to be called by const instances of MinidumpLinuxMaps and (Closed) Base URL: http://google-breakpad.googlecode.com/svn/trunk/
Patch Set: 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
« no previous file with comments | « src/google_breakpad/processor/minidump.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/processor/minidump.cc
===================================================================
--- src/processor/minidump.cc (revision 1481)
+++ src/processor/minidump.cc (working copy)
@@ -3999,7 +3999,7 @@
: MinidumpObject(minidump) {
}
-void MinidumpLinuxMaps::Print() {
+void MinidumpLinuxMaps::Print() const {
if (!valid_) {
BPLOG(ERROR) << "MinidumpLinuxMaps cannot print invalid data";
return;
@@ -4125,7 +4125,7 @@
return true;
}
-void MinidumpLinuxMapsList::Print() {
+void MinidumpLinuxMapsList::Print() const {
if (!valid_ || (maps_ == NULL)) {
BPLOG(ERROR) << "MinidumpLinuxMapsList cannot print valid data";
return;
« no previous file with comments | « src/google_breakpad/processor/minidump.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698