| 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 1d0d76cb614fa2635f948e61cf1209d64315f106..404b96899f6edce606d0367d98a3f3bd81aa2531 100644
|
| --- a/chrome/browser/extensions/api/processes/processes_api.cc
|
| +++ b/chrome/browser/extensions/api/processes/processes_api.cc
|
| @@ -552,7 +552,7 @@ bool GetProcessIdForTabFunction::RunImpl() {
|
| // the data gathering.
|
| if (ProcessesAPI::Get(profile_)->processes_event_router()->
|
| is_task_manager_listening()) {
|
| - MessageLoop::current()->PostTask(FROM_HERE, base::Bind(
|
| + base::MessageLoop::current()->PostTask(FROM_HERE, base::Bind(
|
| &GetProcessIdForTabFunction::GetProcessIdForTab, this));
|
| } else {
|
| registrar_.Add(this,
|
| @@ -615,7 +615,7 @@ bool TerminateFunction::RunImpl() {
|
| // the data gathering.
|
| if (ProcessesAPI::Get(profile_)->processes_event_router()->
|
| is_task_manager_listening()) {
|
| - MessageLoop::current()->PostTask(FROM_HERE, base::Bind(
|
| + base::MessageLoop::current()->PostTask(FROM_HERE, base::Bind(
|
| &TerminateFunction::TerminateProcess, this));
|
| } else {
|
| registrar_.Add(this,
|
| @@ -703,7 +703,7 @@ bool GetProcessInfoFunction::RunImpl() {
|
| // the data gathering.
|
| if (ProcessesAPI::Get(profile_)->processes_event_router()->
|
| is_task_manager_listening()) {
|
| - MessageLoop::current()->PostTask(FROM_HERE, base::Bind(
|
| + base::MessageLoop::current()->PostTask(FROM_HERE, base::Bind(
|
| &GetProcessInfoFunction::GatherProcessInfo, this));
|
| } else {
|
| registrar_.Add(this,
|
|
|