diff options
author | paul@chromium.org <paul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-05 18:48:08 +0000 |
---|---|---|
committer | paul@chromium.org <paul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-05 18:48:08 +0000 |
commit | 81218f4d04c3e4c92458bfc287bb89f2bd26c5b8 (patch) | |
tree | 779bd470b6738e7d12ac1cae5d42107ee29eaa6c /chrome/browser/browser_process_impl.cc | |
parent | 990fcc8cf0ac25cba98a38ef04bd5527fad35ac3 (diff) | |
download | chromium_src-81218f4d04c3e4c92458bfc287bb89f2bd26c5b8.zip chromium_src-81218f4d04c3e4c92458bfc287bb89f2bd26c5b8.tar.gz chromium_src-81218f4d04c3e4c92458bfc287bb89f2bd26c5b8.tar.bz2 |
Port the ResourceDispatcherHost to Mac and linux.
Review URL: http://codereview.chromium.org/20073
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9231 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_process_impl.cc')
-rw-r--r-- | chrome/browser/browser_process_impl.cc | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/chrome/browser/browser_process_impl.cc b/chrome/browser/browser_process_impl.cc index 0ddfd17..cb8cd4b 100644 --- a/chrome/browser/browser_process_impl.cc +++ b/chrome/browser/browser_process_impl.cc @@ -11,9 +11,10 @@ #include "chrome/browser/browser_trial.h" #include "chrome/browser/chrome_thread.h" #include "chrome/browser/google_url_tracker.h" -#include "chrome/browser/plugin_service.h" #include "chrome/browser/profile_manager.h" #include "chrome/browser/renderer_host/render_process_host.h" +#include "chrome/browser/renderer_host/resource_dispatcher_host.h" +#include "chrome/browser/safe_browsing/safe_browsing_service.h" #include "chrome/common/chrome_paths.h" #include "chrome/common/chrome_switches.h" #include "chrome/common/notification_service.h" @@ -26,14 +27,16 @@ #include "chrome/browser/download/save_file_manager.h" #include "chrome/browser/icon_manager.h" #include "chrome/browser/metrics/metrics_service.h" +#include "chrome/browser/plugin_service.h" #include "chrome/browser/printing/print_job_manager.h" -#include "chrome/browser/renderer_host/resource_dispatcher_host.h" -#include "chrome/browser/safe_browsing/safe_browsing_service.h" #include "chrome/browser/debugger/debugger_wrapper.h" #include "chrome/common/clipboard_service.h" #include "chrome/common/l10n_util.h" #include "chrome/views/accelerator_handler.h" #include "chrome/views/view_storage.h" +#elif defined(OS_POSIX) +// TODO(port): Remove the temporary scaffolding as we port the above headers. +#include "chrome/common/temp_scaffolding_stubs.h" #endif namespace { |