diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-25 20:38:53 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-25 20:38:53 +0000 |
commit | 8891d14891423a0bf861fb6cb8a88cc2b0b11d8e (patch) | |
tree | 286765dee398d8ef885c8895a06834063b53cdee /app/table_model.cc | |
parent | cb34b251707323165c85b7079467e9a03c65af8e (diff) | |
download | chromium_src-8891d14891423a0bf861fb6cb8a88cc2b0b11d8e.zip chromium_src-8891d14891423a0bf861fb6cb8a88cc2b0b11d8e.tar.gz chromium_src-8891d14891423a0bf861fb6cb8a88cc2b0b11d8e.tar.bz2 |
remove ICU includes from l10n_util.h
95% of users of l10n_util use it for some functions; the other 5%
want some complicated templates that pull in a ton of ICU headers
as well.
Before this change, the average includer of l10n_util.h pulled in
an additional 80 subheaders because of it.
Additionally, #including ICU headers from a header makes the includee
depend on having the ICU include path in the -I header.
Review URL: http://codereview.chromium.org/515059
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@37032 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'app/table_model.cc')
-rw-r--r-- | app/table_model.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/table_model.cc b/app/table_model.cc index fa4ccb7..b70ad2d 100644 --- a/app/table_model.cc +++ b/app/table_model.cc @@ -5,6 +5,7 @@ #include "app/table_model.h" #include "app/l10n_util.h" +#include "app/l10n_util_collator.h" #include "third_party/skia/include/core/SkBitmap.h" // TableColumn ----------------------------------------------------------------- |