summaryrefslogtreecommitdiffstats
path: root/base/debug
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-03-30 14:29:00 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-03-30 14:29:00 +0000
commiteb62f726194d68406047f2716e8ef500bf456d67 (patch)
tree1e11329639f5662e7a2821e442c7dc8d36a2b7ad /base/debug
parente86df8dcc1b9ad3eb30c46d5ba6de9fe66991801 (diff)
downloadchromium_src-eb62f726194d68406047f2716e8ef500bf456d67.zip
chromium_src-eb62f726194d68406047f2716e8ef500bf456d67.tar.gz
chromium_src-eb62f726194d68406047f2716e8ef500bf456d67.tar.bz2
base: Update the include paths of base/string_piece.h to its new location.
string_piece.h was moved into base/strings/ in r191206 - https://chromiumcodereview.appspot.com/12982018/ TBR=brettw@chromium.org Review URL: https://codereview.chromium.org/13374002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@191508 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/debug')
-rw-r--r--base/debug/crash_logging.h2
-rw-r--r--base/debug/debugger_posix.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/base/debug/crash_logging.h b/base/debug/crash_logging.h
index 9b284ee..d6ffa91 100644
--- a/base/debug/crash_logging.h
+++ b/base/debug/crash_logging.h
@@ -10,7 +10,7 @@
#include "base/base_export.h"
#include "base/basictypes.h"
-#include "base/string_piece.h"
+#include "base/strings/string_piece.h"
// These functions add metadata to the upload payload when sending crash reports
// to the crash server.
diff --git a/base/debug/debugger_posix.cc b/base/debug/debugger_posix.cc
index 0fbefde..aef73ec 100644
--- a/base/debug/debugger_posix.cc
+++ b/base/debug/debugger_posix.cc
@@ -44,8 +44,8 @@
#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"
+#include "base/strings/string_piece.h"
#if defined(USE_SYMBOLIZE)
#include "base/third_party/symbolize/symbolize.h"