summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorisherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-01 05:40:05 +0000
committerisherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-01 05:40:05 +0000
commit4771b3b05111b34ee56ce8f4919f77e9ebf5dbfc (patch)
tree9267c931c5cdc36e33454c1963db5ecaad706741
parent34db5a0c34ea52603d1a294eafaeb4da438a555a (diff)
downloadchromium_src-4771b3b05111b34ee56ce8f4919f77e9ebf5dbfc.zip
chromium_src-4771b3b05111b34ee56ce8f4919f77e9ebf5dbfc.tar.gz
chromium_src-4771b3b05111b34ee56ce8f4919f77e9ebf5dbfc.tar.bz2
Fix icu header paths in autofill_country.cc
Fixes build problem when building with system ICU. See Gentoo Linux bug. http://bugs.gentoo.org/356593 BUG=74286 TEST=Remove bundled ICU headers and build with -Duse_system_icu Review URL: http://codereview.chromium.org/6597062 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76360 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/browser/autofill/autofill_country.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/autofill/autofill_country.cc b/chrome/browser/autofill/autofill_country.cc
index f7b9f24..ef675bb 100644
--- a/chrome/browser/autofill/autofill_country.cc
+++ b/chrome/browser/autofill/autofill_country.cc
@@ -13,12 +13,12 @@
#include "base/utf_string_conversions.h"
#include "chrome/browser/browser_process.h"
#include "grit/generated_resources.h"
-#include "third_party/icu/public/common/unicode/locid.h"
-#include "third_party/icu/public/common/unicode/uloc.h"
-#include "third_party/icu/public/i18n/unicode/coll.h"
-#include "third_party/icu/public/i18n/unicode/ucol.h"
#include "ui/base/l10n/l10n_util_collator.h"
#include "ui/base/l10n/l10n_util.h"
+#include "unicode/coll.h"
+#include "unicode/locid.h"
+#include "unicode/ucol.h"
+#include "unicode/uloc.h"
namespace {