diff options
author | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-18 20:58:01 +0000 |
---|---|---|
committer | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-18 20:58:01 +0000 |
commit | 875ee82945cfb42b16891c2aa5cca7101fc121e4 (patch) | |
tree | 87695916e983accc2f7ed06b1339728ffe6d6bb3 /chrome/browser/chrome_thread.h | |
parent | 03de43e619d7b65ec012e21fbcedd8041be5d776 (diff) | |
download | chromium_src-875ee82945cfb42b16891c2aa5cca7101fc121e4.zip chromium_src-875ee82945cfb42b16891c2aa5cca7101fc121e4.tar.gz chromium_src-875ee82945cfb42b16891c2aa5cca7101fc121e4.tar.bz2 |
Create a dedicated cache thread and use it to create the
Http cache.
BUG=26730
TEST=none
Review URL: http://codereview.chromium.org/1989014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47564 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chrome_thread.h')
-rw-r--r-- | chrome/browser/chrome_thread.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/browser/chrome_thread.h b/chrome/browser/chrome_thread.h index da7493f..5dbedfa 100644 --- a/chrome/browser/chrome_thread.h +++ b/chrome/browser/chrome_thread.h @@ -55,6 +55,9 @@ class ChromeThread : public base::Thread { // Used to launch and terminate processes. PROCESS_LAUNCHER, + // This is the thread to handle slow HTTP cache operations. + CACHE, + // This is the thread that processes IPC and network messages. IO, |