diff options
author | mattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-04 20:45:54 +0000 |
---|---|---|
committer | mattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-04 20:45:54 +0000 |
commit | 831a32d135fdeeea1f906742074f3b72312e9669 (patch) | |
tree | c692080f8a9a25101e9adca2c8c3797233bf1eb6 /chrome/plugin | |
parent | f16785b4bbd3449580e7998d83a80b0b2fb6dcd1 (diff) | |
download | chromium_src-831a32d135fdeeea1f906742074f3b72312e9669.zip chromium_src-831a32d135fdeeea1f906742074f3b72312e9669.tar.gz chromium_src-831a32d135fdeeea1f906742074f3b72312e9669.tar.bz2 |
Avoid including gtk & glib headers in message_pump_glib.h, saves 1 sec on do-nothing make.
TEST=manual browser test, trybots
BUG=none
Review URL: http://codereview.chromium.org/464031
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33851 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/plugin')
-rw-r--r-- | chrome/plugin/plugin_thread.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/plugin/plugin_thread.cc b/chrome/plugin/plugin_thread.cc index 9ef6c45..91c763b 100644 --- a/chrome/plugin/plugin_thread.cc +++ b/chrome/plugin/plugin_thread.cc @@ -6,6 +6,10 @@ #include "build/build_config.h" +#if defined(OS_LINUX) +#include <gtk/gtk.h> +#endif + #include "base/command_line.h" #include "base/lazy_instance.h" #include "base/process_util.h" |