aboutsummaryrefslogtreecommitdiff
path: root/src/processor/synth_minidump.cc
diff options
context:
space:
mode:
authorted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e>2010-07-23 17:20:42 +0000
committerted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e>2010-07-23 17:20:42 +0000
commit6f598cc435f8c557b33f85802f1571ef745c37b0 (patch)
tree53e5ca60da5111a09a1c01a35105152e67483bb1 /src/processor/synth_minidump.cc
parentSeparate the "hello" message from the parameter messages in (diff)
downloadbreakpad-6f598cc435f8c557b33f85802f1571ef745c37b0.tar.xz
Fix unit tests that have not built since @610
A=kmixter R=ted http://breakpad.appspot.com/132001 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@629 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/processor/synth_minidump.cc')
-rw-r--r--src/processor/synth_minidump.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/processor/synth_minidump.cc b/src/processor/synth_minidump.cc
index c25d421f..cebc0a6a 100644
--- a/src/processor/synth_minidump.cc
+++ b/src/processor/synth_minidump.cc
@@ -38,16 +38,16 @@ namespace google_breakpad {
namespace SynthMinidump {
Section::Section(const Dump &dump)
- : TestAssembler::Section(dump.endianness()) { }
+ : test_assembler::Section(dump.endianness()) { }
-void Section::CiteLocationIn(TestAssembler::Section *section) const {
+void Section::CiteLocationIn(test_assembler::Section *section) const {
if (this)
(*section).D32(size_).D32(file_offset_);
else
(*section).D32(0).D32(0);
}
-void Stream::CiteStreamIn(TestAssembler::Section *section) const {
+void Stream::CiteStreamIn(test_assembler::Section *section) const {
section->D32(type_);
CiteLocationIn(section);
}
@@ -114,11 +114,11 @@ String::String(const Dump &dump, const string &contents) : Section(dump) {
D16(*i);
}
-void String::CiteStringIn(TestAssembler::Section *section) const {
+void String::CiteStringIn(test_assembler::Section *section) const {
section->D32(file_offset_);
}
-void Memory::CiteMemoryIn(TestAssembler::Section *section) const {
+void Memory::CiteMemoryIn(test_assembler::Section *section) const {
section->D64(address_);
CiteLocationIn(section);
}
@@ -237,7 +237,7 @@ Dump::Dump(u_int64_t flags,
Endianness endianness,
u_int32_t version,
u_int32_t date_time_stamp)
- : TestAssembler::Section(endianness),
+ : test_assembler::Section(endianness),
file_start_(0),
stream_directory_(*this),
stream_count_(0),
@@ -301,7 +301,7 @@ void Dump::Finish() {
// has the stream count and MDRVA.
stream_count_label_ = stream_count_;
stream_directory_rva_ = file_start_ + Size();
- Append(static_cast<TestAssembler::Section &>(stream_directory_));
+ Append(static_cast<test_assembler::Section &>(stream_directory_));
}
} // namespace SynthMinidump