diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-12 11:03:24 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-12 11:03:24 +0000 |
commit | 9bb6c4574fe5379a0940d468ba86ae1b78abd09f (patch) | |
tree | 87d7ec3a7874cb41ce171c2f8229abe0f4e376b0 | |
parent | d0542f862f1a48cbeaf83ce53e663c3722829445 (diff) | |
download | chromium_src-9bb6c4574fe5379a0940d468ba86ae1b78abd09f.zip chromium_src-9bb6c4574fe5379a0940d468ba86ae1b78abd09f.tar.gz chromium_src-9bb6c4574fe5379a0940d468ba86ae1b78abd09f.tar.bz2 |
Fix build. linux_util.h caused a weird compile error when #included on Windows.
TBR=evan
BUG=30785
TEST=none
Review URL: http://codereview.chromium.org/874005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41427 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/web_applications/web_app.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/chrome/browser/web_applications/web_app.cc b/chrome/browser/web_applications/web_app.cc index 3767616..e74d13b 100644 --- a/chrome/browser/web_applications/web_app.cc +++ b/chrome/browser/web_applications/web_app.cc @@ -14,7 +14,6 @@ #include "base/callback.h" #include "base/file_util.h" -#include "base/linux_util.h" #include "base/md5.h" #include "base/message_loop.h" #include "base/path_service.h" @@ -32,6 +31,10 @@ #include "chrome/common/url_constants.h" #include "webkit/glue/dom_operations.h" +#if defined(OS_LINUX) +#include "base/linux_util.h" +#endif // defined(OS_LINUX) + #if defined(OS_WIN) #include "app/gfx/icon_util.h" #include "base/win_util.h" |