diff options
Diffstat (limited to 'chrome/browser/task_manager.cc')
-rw-r--r-- | chrome/browser/task_manager.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/task_manager.cc b/chrome/browser/task_manager.cc index 6e240e0..b2e9798 100644 --- a/chrome/browser/task_manager.cc +++ b/chrome/browser/task_manager.cc @@ -234,7 +234,7 @@ void TaskManagerTableModel::StartUpdating() { // Register jobs notifications so we can compute network usage (it must be // done from the IO thread). - Thread* thread = g_browser_process->io_thread(); + base::Thread* thread = g_browser_process->io_thread(); if (thread) thread->message_loop()->PostTask(FROM_HERE, NewRunnableMethod( this, &TaskManagerTableModel::RegisterForJobDoneNotifications)); @@ -260,7 +260,7 @@ void TaskManagerTableModel::StopUpdating() { } // Unregister jobs notification (must be done from the IO thread). - Thread* thread = g_browser_process->io_thread(); + base::Thread* thread = g_browser_process->io_thread(); if (thread) thread->message_loop()->PostTask(FROM_HERE, NewRunnableMethod( this, &TaskManagerTableModel::UnregisterForJobDoneNotifications)); |