summaryrefslogtreecommitdiffstats
path: root/chrome/browser
diff options
context:
space:
mode:
authorevanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-22 21:33:27 +0000
committerevanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-22 21:33:27 +0000
commitde5abb99dd2c68a4164447cc67bfba228ec3353d (patch)
treec0104e68ff521f623955640bc5868c2b76b5e80a /chrome/browser
parent3e43abd431ea6358a6637f09ba0659a4eb946633 (diff)
downloadchromium_src-de5abb99dd2c68a4164447cc67bfba228ec3353d.zip
chromium_src-de5abb99dd2c68a4164447cc67bfba228ec3353d.tar.gz
chromium_src-de5abb99dd2c68a4164447cc67bfba228ec3353d.tar.bz2
Reduce header dependencies.
Random files in V8Bindings were getting rebuilt when I touched process_util.h. I tracked it down to stats_table.h and shared_memory.h. This change cuts down some dependencies there; more could be removed if we made some of our FooHandle typedefs into abstract data types instead. Review URL: http://codereview.chromium.org/7307 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3770 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser')
-rw-r--r--chrome/browser/automation/automation_provider.cc1
-rw-r--r--chrome/browser/browser_init.cc1
-rw-r--r--chrome/browser/browser_main.cc1
-rw-r--r--chrome/browser/web_contents.cc1
4 files changed, 4 insertions, 0 deletions
diff --git a/chrome/browser/automation/automation_provider.cc b/chrome/browser/automation/automation_provider.cc
index 599a553..f3d21a7 100644
--- a/chrome/browser/automation/automation_provider.cc
+++ b/chrome/browser/automation/automation_provider.cc
@@ -5,6 +5,7 @@
#include "chrome/browser/automation/automation_provider.h"
#include "base/path_service.h"
+#include "base/process_util.h"
#include "chrome/app/chrome_dll_resource.h"
#include "chrome/browser/automation/automation_provider_list.h"
#include "chrome/browser/automation/ui_controls.h"
diff --git a/chrome/browser/browser_init.cc b/chrome/browser/browser_init.cc
index ff4b22a..848688a 100644
--- a/chrome/browser/browser_init.cc
+++ b/chrome/browser/browser_init.cc
@@ -12,6 +12,7 @@
#include "base/file_util.h"
#include "base/histogram.h"
#include "base/path_service.h"
+#include "base/process_util.h"
#include "base/string_util.h"
#include "base/win_util.h"
#include "chrome/app/locales/locale_settings.h"
diff --git a/chrome/browser/browser_main.cc b/chrome/browser/browser_main.cc
index 104a93f..38f35594 100644
--- a/chrome/browser/browser_main.cc
+++ b/chrome/browser/browser_main.cc
@@ -12,6 +12,7 @@
#include "base/gfx/vector_canvas.h"
#include "base/histogram.h"
#include "base/path_service.h"
+#include "base/process_util.h"
#include "base/registry.h"
#include "base/string_util.h"
#include "base/tracked_objects.h"
diff --git a/chrome/browser/web_contents.cc b/chrome/browser/web_contents.cc
index f283c64..93ab5a1 100644
--- a/chrome/browser/web_contents.cc
+++ b/chrome/browser/web_contents.cc
@@ -7,6 +7,7 @@
#include "base/command_line.h"
#include "base/compiler_specific.h"
#include "base/file_version_info.h"
+#include "base/process_util.h"
#include "chrome/app/locales/locale_settings.h"
#include "chrome/browser/bookmarks/bookmark_model.h"
#include "chrome/browser/browser.h"