diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-14 20:54:35 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-14 20:54:35 +0000 |
commit | 2025d00c3fa5270a0ea10c9ec7a18cfa69007beb (patch) | |
tree | 34930235824be79a141351d1b40fa4faeef0e2a6 /base/debug | |
parent | a462eb604b7976fc6e264cca846a9c92e34254c5 (diff) | |
download | chromium_src-2025d00c3fa5270a0ea10c9ec7a18cfa69007beb.zip chromium_src-2025d00c3fa5270a0ea10c9ec7a18cfa69007beb.tar.gz chromium_src-2025d00c3fa5270a0ea10c9ec7a18cfa69007beb.tar.bz2 |
Move eintr_wrapper.h from base to base/posix
Review URL: https://codereview.chromium.org/11366229
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@167739 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/debug')
-rw-r--r-- | base/debug/debugger_posix.cc | 2 | ||||
-rw-r--r-- | base/debug/stack_trace_posix.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/base/debug/debugger_posix.cc b/base/debug/debugger_posix.cc index 4a95f3a..0fbefde 100644 --- a/base/debug/debugger_posix.cc +++ b/base/debug/debugger_posix.cc @@ -40,9 +40,9 @@ #include <ostream> #include "base/basictypes.h" -#include "base/eintr_wrapper.h" #include "base/logging.h" #include "base/memory/scoped_ptr.h" +#include "base/posix/eintr_wrapper.h" #include "base/safe_strerror_posix.h" #include "base/string_piece.h" #include "base/stringprintf.h" diff --git a/base/debug/stack_trace_posix.cc b/base/debug/stack_trace_posix.cc index 661fdb7..6c90b2b 100644 --- a/base/debug/stack_trace_posix.cc +++ b/base/debug/stack_trace_posix.cc @@ -27,9 +27,9 @@ #include "base/basictypes.h" #include "base/debug/debugger.h" -#include "base/eintr_wrapper.h" #include "base/logging.h" #include "base/memory/scoped_ptr.h" +#include "base/posix/eintr_wrapper.h" #include "base/string_number_conversions.h" #if defined(USE_SYMBOLIZE) |