aboutsummaryrefslogtreecommitdiff
path: root/src/common/mac
diff options
context:
space:
mode:
authorted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e>2011-11-18 21:40:27 +0000
committerted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e>2011-11-18 21:40:27 +0000
commit84571a2b91463ec91be12699b3c28b3db456ab94 (patch)
treedaa0c44846d8a218e42bc663ff2b1b58b6b0169c /src/common/mac
parent Correct bug introduced by last commit: Interface on Breakpad is incorrect. (diff)
downloadbreakpad-84571a2b91463ec91be12699b3c28b3db456ab94.tar.xz
Rename md5.c to md5.cc, put its contents inside the google_breakpad namespace.
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@887 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/common/mac')
-rw-r--r--src/common/mac/macho_id.cc4
-rw-r--r--src/common/mac/macho_id.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/common/mac/macho_id.cc b/src/common/mac/macho_id.cc
index ce0ecff3..abe1fabd 100644
--- a/src/common/mac/macho_id.cc
+++ b/src/common/mac/macho_id.cc
@@ -51,6 +51,10 @@ extern "C" { // necessary for Leopard
namespace MacFileUtilities {
+using google_breakpad::MD5Init;
+using google_breakpad::MD5Update;
+using google_breakpad::MD5Final;
+
MachoID::MachoID(const char *path)
: memory_(0),
memory_size_(0),
diff --git a/src/common/mac/macho_id.h b/src/common/mac/macho_id.h
index a5338120..ccb126d4 100644
--- a/src/common/mac/macho_id.h
+++ b/src/common/mac/macho_id.h
@@ -109,7 +109,7 @@ class MachoID {
uint32_t crc_;
// The MD5 context
- MD5Context md5_context_;
+ google_breakpad::MD5Context md5_context_;
// The current update to call from the Update callback
UpdateFunction update_function_;