Allow Print() to be called by const instances of MinidumpLinuxMaps and
MinidumpLinuxMapsList.

R=ivanpe@chromium.org

Review URL: https://codereview.chromium.org/1287803002

git-svn-id: http://google-breakpad.googlecode.com/svn/trunk/src@1482 4c0a9323-5329-0410-9bdc-e9ce6186880e
diff --git a/google_breakpad/processor/minidump.h b/google_breakpad/processor/minidump.h
index c6273cf..968cd8d 100644
--- a/google_breakpad/processor/minidump.h
+++ b/google_breakpad/processor/minidump.h
@@ -892,7 +892,7 @@
   const string GetPathname() const { return valid_ ? region_.path : ""; }
 
   // Print the contents of this mapping.
-  void Print();
+  void Print() const;
 
  private:
   // These objects are managed by MinidumpLinuxMapsList.
@@ -920,7 +920,7 @@
   const MinidumpLinuxMaps *GetLinuxMapsAtIndex(unsigned int index) const;
 
   // Print the contents of /proc/self/maps to stdout.
-  void Print();
+  void Print() const;
 
  private:
   friend class Minidump;
diff --git a/processor/minidump.cc b/processor/minidump.cc
index 02aa16b..85ec6b9 100644
--- a/processor/minidump.cc
+++ b/processor/minidump.cc
@@ -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;