aboutsummaryrefslogtreecommitdiff
path: root/src/common/mac
diff options
context:
space:
mode:
authorted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e>2011-07-26 14:03:09 +0000
committerted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e>2011-07-26 14:03:09 +0000
commit48550041f9663bd13cb805cf770b7d1ddcb1514a (patch)
treec0ee0e02f25cf3c056dbad4bb0f14df91c017fe2 /src/common/mac
parentFix compilation using the OS X 10.7 SDK by #ifdefing out PPC support when tar... (diff)
downloadbreakpad-48550041f9663bd13cb805cf770b7d1ddcb1514a.tar.xz
Switch mac DumpSymbols::WriteSymbolFile to take an ostream instead of a FILE* to match the changes to Module::Write
R=mark at http://breakpad.appspot.com/294001/show git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@818 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/common/mac')
-rw-r--r--src/common/mac/dump_syms.h3
-rw-r--r--src/common/mac/dump_syms.mm3
2 files changed, 4 insertions, 2 deletions
diff --git a/src/common/mac/dump_syms.h b/src/common/mac/dump_syms.h
index fbf11c78..f197ca28 100644
--- a/src/common/mac/dump_syms.h
+++ b/src/common/mac/dump_syms.h
@@ -40,6 +40,7 @@
#include <stdio.h>
#include <stdlib.h>
+#include <ostream>
#include <string>
#include <vector>
@@ -111,7 +112,7 @@ class DumpSymbols {
// Read the selected object file's debugging information, and write it
// out to |stream|. Return true on success; if an error occurs, report it
// and return false.
- bool WriteSymbolFile(FILE *stream);
+ bool WriteSymbolFile(std::ostream &stream);
private:
// Used internally.
diff --git a/src/common/mac/dump_syms.mm b/src/common/mac/dump_syms.mm
index cc2efe17..5fd614f2 100644
--- a/src/common/mac/dump_syms.mm
+++ b/src/common/mac/dump_syms.mm
@@ -40,6 +40,7 @@
#include <mach-o/fat.h>
#include <stdio.h>
+#include <ostream>
#include <string>
#include <vector>
@@ -420,7 +421,7 @@ bool DumpSymbols::LoadCommandDumper::SymtabCommand(const ByteBuffer &entries,
return true;
}
-bool DumpSymbols::WriteSymbolFile(FILE *stream) {
+bool DumpSymbols::WriteSymbolFile(std::ostream &stream) {
// Select an object file, if SetArchitecture hasn't been called to set one
// explicitly.
if (!selected_object_file_) {