Index: chrome/browser/extensions/api/processes/processes_api.cc |
diff --git a/chrome/browser/extensions/api/processes/processes_api.cc b/chrome/browser/extensions/api/processes/processes_api.cc |
index 25989bfab42f9819d02b03bfa51805dd7b7314c3..12ffe48c4e02fb1012016d2bbee0bf6a7f8e5851 100644 |
--- a/chrome/browser/extensions/api/processes/processes_api.cc |
+++ b/chrome/browser/extensions/api/processes/processes_api.cc |
@@ -551,8 +551,9 @@ bool GetProcessIdForTabFunction::RunImpl() { |
// the data gathering. |
if (ProcessesAPI::Get(profile_)->processes_event_router()-> |
is_task_manager_listening()) { |
- MessageLoop::current()->PostTask(FROM_HERE, base::Bind( |
- &GetProcessIdForTabFunction::GetProcessIdForTab, this)); |
+ base::MessageLoop::current()->PostTask( |
+ FROM_HERE, |
+ base::Bind(&GetProcessIdForTabFunction::GetProcessIdForTab, this)); |
} else { |
registrar_.Add(this, |
chrome::NOTIFICATION_TASK_MANAGER_CHILD_PROCESSES_DATA_READY, |
@@ -614,8 +615,8 @@ bool TerminateFunction::RunImpl() { |
// the data gathering. |
if (ProcessesAPI::Get(profile_)->processes_event_router()-> |
is_task_manager_listening()) { |
- MessageLoop::current()->PostTask(FROM_HERE, base::Bind( |
- &TerminateFunction::TerminateProcess, this)); |
+ base::MessageLoop::current()->PostTask( |
+ FROM_HERE, base::Bind(&TerminateFunction::TerminateProcess, this)); |
} else { |
registrar_.Add(this, |
chrome::NOTIFICATION_TASK_MANAGER_CHILD_PROCESSES_DATA_READY, |
@@ -702,8 +703,9 @@ bool GetProcessInfoFunction::RunImpl() { |
// the data gathering. |
if (ProcessesAPI::Get(profile_)->processes_event_router()-> |
is_task_manager_listening()) { |
- MessageLoop::current()->PostTask(FROM_HERE, base::Bind( |
- &GetProcessInfoFunction::GatherProcessInfo, this)); |
+ base::MessageLoop::current()->PostTask( |
+ FROM_HERE, |
+ base::Bind(&GetProcessInfoFunction::GatherProcessInfo, this)); |
} else { |
registrar_.Add(this, |
chrome::NOTIFICATION_TASK_MANAGER_CHILD_PROCESSES_DATA_READY, |