diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-10 00:46:16 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-10 00:46:16 +0000 |
commit | 8392ccddddf7f355d57871a5e9af37750f7139f8 (patch) | |
tree | 90fad5b03f607fcabea23fb3756005c50da970cd /base/debug | |
parent | 5e992fa6227a36da5cb705bfca39ebb785027b61 (diff) | |
download | chromium_src-8392ccddddf7f355d57871a5e9af37750f7139f8.zip chromium_src-8392ccddddf7f355d57871a5e9af37750f7139f8.tar.gz chromium_src-8392ccddddf7f355d57871a5e9af37750f7139f8.tar.bz2 |
Move stack_container and linked_list to the new containers subdirectory.
This also replaces the StackWString with StackString16 and adds a char traits definition to the string16 header file to make this possible without ifdefs.
BUG=
Review URL: https://codereview.chromium.org/11360174
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@167022 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/debug')
-rw-r--r-- | base/debug/leak_tracker.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/debug/leak_tracker.h b/base/debug/leak_tracker.h index 22ded0d..93cea39 100644 --- a/base/debug/leak_tracker.h +++ b/base/debug/leak_tracker.h @@ -11,8 +11,8 @@ #endif #ifdef ENABLE_LEAK_TRACKER +#include "base/containers/linked_list.h" #include "base/debug/stack_trace.h" -#include "base/linked_list.h" #include "base/logging.h" #endif // ENABLE_LEAK_TRACKER |