diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-10 01:57:58 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-10 01:57:58 +0000 |
commit | 7dba43dccbd848146f08d5d7077175bd685abddf (patch) | |
tree | f18ec427303b7b1dfcedf46a67afbf01dfc92a9f /content/browser/worker_host/worker_process_host.h | |
parent | 5ccd4951d9e4c598395ec9135ff5569d42d5c41a (diff) | |
download | chromium_src-7dba43dccbd848146f08d5d7077175bd685abddf.zip chromium_src-7dba43dccbd848146f08d5d7077175bd685abddf.tar.gz chromium_src-7dba43dccbd848146f08d5d7077175bd685abddf.tar.bz2 |
Cleanup: Remove unneeded forward declarations in content/browser.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/8499042
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109363 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/worker_host/worker_process_host.h')
-rw-r--r-- | content/browser/worker_host/worker_process_host.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/content/browser/worker_host/worker_process_host.h b/content/browser/worker_host/worker_process_host.h index c89839f..9608262 100644 --- a/content/browser/worker_host/worker_process_host.h +++ b/content/browser/worker_host/worker_process_host.h @@ -7,6 +7,7 @@ #pragma once #include <list> +#include <utility> #include "base/basictypes.h" #include "base/file_path.h" @@ -15,12 +16,10 @@ #include "googleurl/src/gurl.h" class ResourceDispatcherHost; + namespace content { class ResourceContext; } // namespace content -namespace net { -class URLRequestContextGetter; -} // namespace net // The WorkerProcessHost is the interface that represents the browser side of // the browser <-> worker communication channel. There will be one @@ -30,7 +29,6 @@ class URLRequestContextGetter; // BrowserContext. class WorkerProcessHost : public BrowserChildProcessHost { public: - // Contains information about each worker instance, needed to forward messages // between the renderer and worker processes. class WorkerInstance { |