diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-02 03:21:46 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-02 03:21:46 +0000 |
commit | 6de328fddf450413595d75c2fe3cf2c34f7cee4f (patch) | |
tree | e5ae3b9e562bcf9f8e9442e696545bd2f211e850 | |
parent | 17f12b5a7bb89916a41256c7bdbe640f8df06604 (diff) | |
download | chromium_src-6de328fddf450413595d75c2fe3cf2c34f7cee4f.zip chromium_src-6de328fddf450413595d75c2fe3cf2c34f7cee4f.tar.gz chromium_src-6de328fddf450413595d75c2fe3cf2c34f7cee4f.tar.bz2 |
Revert 61272 - Fix windows build (missing include).
TBR=thakis
BUG=none
TEST=compile
Review URL: http://codereview.chromium.org/3533011
TBR=estade@chromium.org
Review URL: http://codereview.chromium.org/3552006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61282 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | base/debug_util.h | 1 | ||||
-rw-r--r-- | base/debug_util_posix.cc | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/base/debug_util.h b/base/debug_util.h index 457874e..5814781 100644 --- a/base/debug_util.h +++ b/base/debug_util.h @@ -11,7 +11,6 @@ #pragma once #include <iosfwd> -#include <string> #include "base/basictypes.h" diff --git a/base/debug_util_posix.cc b/base/debug_util_posix.cc index 2a80b09..7e74aef 100644 --- a/base/debug_util_posix.cc +++ b/base/debug_util_posix.cc @@ -13,6 +13,7 @@ #include <sys/types.h> #include <unistd.h> +#include <string> #include <vector> #if defined(__GLIBCXX__) |