| Index: base/debug/debugger_posix.cc
|
| diff --git a/base/debug/debugger_posix.cc b/base/debug/debugger_posix.cc
|
| index cd6dc765b43bcea7e051b0542c1da608c592a327..e92d5a5619a6f113ad5b7adc5fdb92af7a541b46 100644
|
| --- a/base/debug/debugger_posix.cc
|
| +++ b/base/debug/debugger_posix.cc
|
| @@ -3,8 +3,6 @@
|
| // found in the LICENSE file.
|
|
|
| #include "base/debug/debugger.h"
|
| -#include "base/macros.h"
|
| -#include "build/build_config.h"
|
|
|
| #include <errno.h>
|
| #include <fcntl.h>
|
| @@ -16,8 +14,12 @@
|
| #include <sys/types.h>
|
| #include <unistd.h>
|
|
|
| +#include <memory>
|
| #include <vector>
|
|
|
| +#include "base/macros.h"
|
| +#include "build/build_config.h"
|
| +
|
| #if defined(__GLIBCXX__)
|
| #include <cxxabi.h>
|
| #endif
|
| @@ -38,7 +40,6 @@
|
|
|
| #include "base/debug/alias.h"
|
| #include "base/logging.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/posix/eintr_wrapper.h"
|
| #include "base/strings/string_piece.h"
|
|
|
|
|