diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-03 14:35:22 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-03 14:35:22 +0000 |
commit | be1ce6a7b2fa7e9622e5b249abd5fab478b6ca05 (patch) | |
tree | f8979e84e75cefbc8dc28180a7a6b99f5a0e34ed /base/process_util_unittest.cc | |
parent | e28976b97eba6f8b7e5b39dba4f684c3ba6b2a6c (diff) | |
download | chromium_src-be1ce6a7b2fa7e9622e5b249abd5fab478b6ca05.zip chromium_src-be1ce6a7b2fa7e9622e5b249abd5fab478b6ca05.tar.gz chromium_src-be1ce6a7b2fa7e9622e5b249abd5fab478b6ca05.tar.bz2 |
Add #include utf_string_conversions.h to all files that use ASCIIToWide and
ASCIIToUTF16. I removed string_util includes from a few places where it
obviously wasn't needed.
In a separate pass, I'm going to remove ASCIITo* from string_util, then I'm
going to do an even later pass to find the unnecessary string_util.h includes
and remove them.
TEST=it compiles
BUG=none
Review URL: http://codereview.chromium.org/3058027
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54746 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/process_util_unittest.cc')
-rw-r--r-- | base/process_util_unittest.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/base/process_util_unittest.cc b/base/process_util_unittest.cc index 92031c9..8da89b0 100644 --- a/base/process_util_unittest.cc +++ b/base/process_util_unittest.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -14,6 +14,7 @@ #include "base/platform_thread.h" #include "base/process_util.h" #include "base/scoped_ptr.h" +#include "base/utf_string_conversions.h" #include "testing/gtest/include/gtest/gtest.h" #if defined(OS_LINUX) |