summaryrefslogtreecommitdiffstats
path: root/chrome/browser/task_manager.cc
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-02 05:59:37 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-02 05:59:37 +0000
commit6fad26338ed6119903826156f307e20fe6657c31 (patch)
tree5c6baed35fce907a0cea47ed6091c941db8ebfd1 /chrome/browser/task_manager.cc
parentf75c8f13b967b01babc9454506e9d2ed00519e39 (diff)
downloadchromium_src-6fad26338ed6119903826156f307e20fe6657c31.zip
chromium_src-6fad26338ed6119903826156f307e20fe6657c31.tar.gz
chromium_src-6fad26338ed6119903826156f307e20fe6657c31.tar.bz2
Third patch in getting rid of caching MessageLoop pointers and always using ChromeThread instead.
BUG=25354 Review URL: http://codereview.chromium.org/342068 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30687 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/task_manager.cc')
-rw-r--r--chrome/browser/task_manager.cc18
1 files changed, 9 insertions, 9 deletions
diff --git a/chrome/browser/task_manager.cc b/chrome/browser/task_manager.cc
index cb68301..3085964 100644
--- a/chrome/browser/task_manager.cc
+++ b/chrome/browser/task_manager.cc
@@ -13,8 +13,8 @@
#include "base/string_util.h"
#include "base/thread.h"
#include "chrome/browser/browser_list.h"
-#include "chrome/browser/browser_process.h"
#include "chrome/browser/browser_window.h"
+#include "chrome/browser/chrome_thread.h"
#include "chrome/browser/net/url_request_tracking.h"
#include "chrome/browser/renderer_host/render_process_host.h"
#include "chrome/browser/renderer_host/resource_dispatcher_host.h"
@@ -436,10 +436,10 @@ void TaskManagerModel::StartUpdating() {
// Register jobs notifications so we can compute network usage (it must be
// done from the IO thread).
- base::Thread* thread = g_browser_process->io_thread();
- if (thread)
- thread->message_loop()->PostTask(FROM_HERE, NewRunnableMethod(
- this, &TaskManagerModel::RegisterForJobDoneNotifications));
+ ChromeThread::PostTask(
+ ChromeThread::IO, FROM_HERE,
+ NewRunnableMethod(
+ this, &TaskManagerModel::RegisterForJobDoneNotifications));
// Notify resource providers that we are updating.
for (ResourceProviderList::iterator iter = providers_.begin();
@@ -459,10 +459,10 @@ void TaskManagerModel::StopUpdating() {
}
// Unregister jobs notification (must be done from the IO thread).
- base::Thread* thread = g_browser_process->io_thread();
- if (thread)
- thread->message_loop()->PostTask(FROM_HERE, NewRunnableMethod(
- this, &TaskManagerModel::UnregisterForJobDoneNotifications));
+ ChromeThread::PostTask(
+ ChromeThread::IO, FROM_HERE,
+ NewRunnableMethod(
+ this, &TaskManagerModel::UnregisterForJobDoneNotifications));
}
void TaskManagerModel::AddResourceProvider(