aboutsummaryrefslogtreecommitdiff
path: root/src/common/dwarf
diff options
context:
space:
mode:
authorjessicag.feedback@gmail.com <jessicag.feedback@gmail.com@4c0a9323-5329-0410-9bdc-e9ce6186880e>2011-10-17 19:08:31 +0000
committerjessicag.feedback@gmail.com <jessicag.feedback@gmail.com@4c0a9323-5329-0410-9bdc-e9ce6186880e>2011-10-17 19:08:31 +0000
commitbf407c0c77367b91d4982b4c994e06427223d685 (patch)
tree8d833a2fdea9e1a7fffca4b12722343a5046ea4a /src/common/dwarf
parent Use frame pointer to walk ARM stack on iOS. (diff)
downloadbreakpad-bf407c0c77367b91d4982b4c994e06427223d685.tar.xz
Add includes for unittests that appear to need them.
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@870 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/common/dwarf')
-rw-r--r--src/common/dwarf/dwarf2diehandler_unittest.cc6
-rw-r--r--src/common/dwarf/dwarf2reader_cfi_unittest.cc2
2 files changed, 8 insertions, 0 deletions
diff --git a/src/common/dwarf/dwarf2diehandler_unittest.cc b/src/common/dwarf/dwarf2diehandler_unittest.cc
index 67ccb95f..1e05fd5c 100644
--- a/src/common/dwarf/dwarf2diehandler_unittest.cc
+++ b/src/common/dwarf/dwarf2diehandler_unittest.cc
@@ -32,10 +32,16 @@
// dwarf2diehander_unittest.cc: Unit tests for google_breakpad::DIEDispatcher.
+#include <string>
+#include <utility>
+
#include "breakpad_googletest_includes.h"
#include "common/dwarf/dwarf2diehandler.h"
+using std::make_pair;
+using std::string;
+
using ::testing::_;
using ::testing::ContainerEq;
using ::testing::ElementsAreArray;
diff --git a/src/common/dwarf/dwarf2reader_cfi_unittest.cc b/src/common/dwarf/dwarf2reader_cfi_unittest.cc
index 1a2431c7..271d1b6a 100644
--- a/src/common/dwarf/dwarf2reader_cfi_unittest.cc
+++ b/src/common/dwarf/dwarf2reader_cfi_unittest.cc
@@ -33,6 +33,7 @@
#include <stdlib.h>
+#include <string>
#include <vector>
// The '.eh_frame' format, used by the Linux C++ ABI for exception
@@ -75,6 +76,7 @@ using dwarf2reader::ENDIANNESS_LITTLE;
using dwarf2reader::ByteReader;
using dwarf2reader::CallFrameInfo;
+using std::string;
using std::vector;
using testing::InSequence;
using testing::Return;