summaryrefslogtreecommitdiffstats
path: root/chrome/browser/browser_process.h
diff options
context:
space:
mode:
authordarin@google.com <darin@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-26 05:55:10 +0000
committerdarin@google.com <darin@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-26 05:55:10 +0000
commitab820df141e6ab45fd8a095d2f57f91df44e6c9c (patch)
tree20ae83601c4a484cd74c908b62bc9d702ef27996 /chrome/browser/browser_process.h
parent4d9bdfafcd1393385860bc9fe947e0c07719c0f4 (diff)
downloadchromium_src-ab820df141e6ab45fd8a095d2f57f91df44e6c9c.zip
chromium_src-ab820df141e6ab45fd8a095d2f57f91df44e6c9c.tar.gz
chromium_src-ab820df141e6ab45fd8a095d2f57f91df44e6c9c.tar.bz2
Chrome changes corresponding to my message_loop_type CL.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1363 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_process.h')
-rw-r--r--chrome/browser/browser_process.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/chrome/browser/browser_process.h b/chrome/browser/browser_process.h
index fb3348d..908af1a 100644
--- a/chrome/browser/browser_process.h
+++ b/chrome/browser/browser_process.h
@@ -26,11 +26,13 @@ class ProfileManager;
class RenderProcessHost;
class ResourceDispatcherHost;
class DebuggerWrapper;
-class Thread;
class WebAppInstallerService;
class SharedEvent;
class SuspendController;
+namespace base {
+class Thread;
+}
namespace sandbox {
class BrokerServices;
}
@@ -81,16 +83,16 @@ class BrowserProcess {
// Returns the thread that we perform I/O coordination on (network requests,
// communication with renderers, etc.
// NOTE: need to check the return value for NULL.
- virtual Thread* io_thread() = 0;
+ virtual base::Thread* io_thread() = 0;
// Returns the thread that we perform random file operations on. For code
// that wants to do I/O operations (not network requests or even file: URL
// requests), this is the thread to use to avoid blocking the UI thread.
// It might be nicer to have a thread pool for this kind of thing.
- virtual Thread* file_thread() = 0;
+ virtual base::Thread* file_thread() = 0;
// Returns the thread that is used for database operations such as history.
- virtual Thread* db_thread() = 0;
+ virtual base::Thread* db_thread() = 0;
virtual sandbox::BrokerServices* broker_services() = 0;