diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-19 04:11:57 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-19 04:11:57 +0000 |
commit | 3189013eebc55ea5493186b29f2cee2bc7c0dafc (patch) | |
tree | f9c867f92c5fd9325a7d7e6ea9fed638103c4f4b /content/browser/browser_thread_impl.h | |
parent | 1946e0c4351fbdfd5b012d3c2aeac2c9218ad027 (diff) | |
download | chromium_src-3189013eebc55ea5493186b29f2cee2bc7c0dafc.zip chromium_src-3189013eebc55ea5493186b29f2cee2bc7c0dafc.tar.gz chromium_src-3189013eebc55ea5493186b29f2cee2bc7c0dafc.tar.bz2 |
Hook up the SequencedWorkerPool to the browser thread.
[re-land of 116816 http://codereview.chromium.org/9065009]
This does some refactoring of the static data in the browser thread so we only have one global object instead of a bunch fo separate arrays.
It also hooks up the visited link master's I/O to use this new system as a proof of concept.
Review URL: https://chromiumcodereview.appspot.com/9124033
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@118236 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/browser_thread_impl.h')
-rw-r--r-- | content/browser/browser_thread_impl.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/content/browser/browser_thread_impl.h b/content/browser/browser_thread_impl.h index feea986..4488f85 100644 --- a/content/browser/browser_thread_impl.h +++ b/content/browser/browser_thread_impl.h @@ -25,6 +25,8 @@ class CONTENT_EXPORT BrowserThreadImpl BrowserThreadImpl(BrowserThread::ID identifier, MessageLoop* message_loop); virtual ~BrowserThreadImpl(); + static void ShutdownThreadPool(); + protected: virtual void Init() OVERRIDE; virtual void CleanUp() OVERRIDE; |