summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorestade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-02 00:44:06 +0000
committerestade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-02 00:44:06 +0000
commit8f2a8aefc63b3feb02055b187f491b7deec0d5bb (patch)
treee72feccf531924cde8ad18e1453f4a1c8feb6d65
parenta466a0c5b21e3ecf2b5ff3f37260e167fe1b017f (diff)
downloadchromium_src-8f2a8aefc63b3feb02055b187f491b7deec0d5bb.zip
chromium_src-8f2a8aefc63b3feb02055b187f491b7deec0d5bb.tar.gz
chromium_src-8f2a8aefc63b3feb02055b187f491b7deec0d5bb.tar.bz2
Fix windows build (missing include).
TBR=thakis BUG=none TEST=compile Review URL: http://codereview.chromium.org/3533011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61272 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--base/debug_util.h1
-rw-r--r--base/debug_util_posix.cc1
2 files changed, 1 insertions, 1 deletions
diff --git a/base/debug_util.h b/base/debug_util.h
index 5814781..457874e 100644
--- a/base/debug_util.h
+++ b/base/debug_util.h
@@ -11,6 +11,7 @@
#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 7e74aef..2a80b09 100644
--- a/base/debug_util_posix.cc
+++ b/base/debug_util_posix.cc
@@ -13,7 +13,6 @@
#include <sys/types.h>
#include <unistd.h>
-#include <string>
#include <vector>
#if defined(__GLIBCXX__)